-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "maya",
"version": "1.0.0",
"description": "A PERN + friends boilerplate app",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Ozencb/maya.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ozencb/maya/issues"
},
"homepage": "https://github.com/Ozencb/maya#readme",
"scripts": {
"start": "concurrently \"wsrun -x maya-common --parallel start\"",
"install-dependencies": "yarn && cd packages/api && yarn && cd ../client && yarn",
"pre-commit": "cd packages/api && yarn pre-commit && cd ../../client && yarn pre-commit",
"pre-push": "cd packages/api && yarn pre-push && cd ../../client && yarn pre-push",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit",
"pre-push": "yarn pre-push"
}
},
"devDependencies": {
"concurrently": "^5.2.0",
"husky": "^7.0.4",
"wsrun": "^5.2.0"
}
}