-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (31 loc) · 875 Bytes
/
package.json
File metadata and controls
33 lines (31 loc) · 875 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
29
30
31
32
33
{
"name": "kamaji",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/executebig/kamaji",
"author": "Execute Big",
"license": "MIT",
"scripts": {
"start": "(cd client && npm run build) && (cd server && npm run start)",
"dev": "concurrently --kill-others \"npm:dev-server\" \"npm:dev-client\"",
"dev-server": "cd server && npm run dev",
"dev-client": "cd client && npm run start",
"install": "concurrently \"npm:install-server\" \"npm:install-client\"",
"install-server": "cd server && npm i",
"install-client": "cd client && npm i"
},
"devDependencies": {
"concurrently": "6.0.0",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"prettier": "2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}