forked from hackforla/tdm-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 725 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 725 Bytes
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
{
"name": "root",
"version": "0.2.56",
"private": true,
"scripts": {
"release-notes": "gren release --override",
"start": "concurrently --names \"BACKEND,FRONTEND\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run start:backend\" \"npm run start:frontend\" ",
"start:backend": "cd ./server && npm start",
"start:frontend": "wait-on http://localhost:5001/api/calculations && cd ./client && npm start",
"prepare": "husky install"
},
"dependencies": {
"wait-on": "^8.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lerna run lint"
}
},
"devDependencies": {
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lerna": "^8.2.1"
},
"volta": {
"node": "20.10.0"
}
}