-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 861 Bytes
/
package.json
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
{
"name": "krmx-starter",
"version": "0.0.2",
"description": "A starter project for an application using [Krmx](https://simonkarman.github.io/krmx) and React.",
"scripts": {
"postinstall": "npm run install-all",
"install-all": "npm --prefix board install && npm --prefix server install && npm --prefix client install",
"precommit": "npm run --prefix board precommit && npm run --prefix server precommit && npm run --prefix client precommit",
"dev": "npm-run-all --parallel dev:*",
"dev:board": "npm run --prefix board dev",
"dev:server": "npm run --prefix server dev",
"dev:client": "npm run --prefix client dev"
},
"author": "Simon Karman",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"husky": "^4.3.8"
}
}