-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.3 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "school-services-manager-project",
"version": "0.1.0",
"private": true,
"scripts": {
"install": "cd transactional && npm install && cd ../frontend && npm install && cd ../backend && npm install",
"start": "concurrently \"npm run start --prefix frontend\" \"npm run start --prefix backend\" ",
"dev": "concurrently \"npm run dev --prefix frontend\" \"npm run dev --prefix backend\"",
"gen-api": "npm run gen-api-schema --prefix backend && npm run gen-api-client --prefix frontend",
"typecheck": "npm run typecheck:backend && npm run typecheck:frontend",
"typecheck:backend": "cd backend && npm run check-types",
"typecheck:frontend": "cd frontend && npm run check-types",
"typecheck:showroom": "cd showroom && npm run check-types",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend && npm run build",
"prepare": "husky install"
},
"devDependencies": {
"concurrently": "^7.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.4.3"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run typecheck",
"git add"
]
},
"dependencies": {
"openapi-fetch": "^0.13.4"
}
}