-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.85 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@krmx/root",
"description": "Krmx is a network protocol for realtime multi-user interactions",
"author": "Simon Karman",
"version": "0.6.0",
"private": true,
"scripts": {
"postinstall": "npm --prefix base install && npm --prefix server install && npm --prefix client install && npm --prefix client-react install && npm --prefix state install && npm --prefix docs install",
"audit:fix": "npm --prefix base audit fix && npm --prefix server audit fix && npm --prefix client audit fix && npm --prefix client-react audit fix && npm --prefix state audit fix && npm --prefix docs audit fix",
"validate": "npm install && npm run --prefix base validate && npm run --prefix server validate && npm run --prefix client validate && npm run --prefix client-react validate && npm run --prefix state validate && npm run --prefix docs validate",
"dev": "npm-run-all --parallel dev:*",
"dev:base": "npm run --prefix base dev",
"dev:server": "sleep 250 && npm run --prefix server dev",
"dev:client": "sleep 500 && npm run --prefix client dev",
"dev:client-react": "sleep 750 && npm run --prefix client-react dev",
"dev:docs": "npm run --prefix docs dev",
"versions": "npm install && npm --prefix base run postversion && npm --prefix server run postversion && npm --prefix client run postversion && npm --prefix client-react run postversion && npm --prefix state run versions"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"husky": "^4.3.8"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate"
}
},
"license": "ISC",
"homepage": "https://simonkarman.github.io/krmx",
"contributors": [
{
"name": "Simon Karman",
"url": "https://www.simonkarman.nl",
"githubUsername": "simonkarman"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/simonkarman/krmx.git"
}
}