-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 936 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
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "howtographql2",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/howtographql/howtographql2.git",
"author": "Novvum",
"license": "MIT",
"private": true,
"scripts": {
"dev": "npm-run-all --parallel 'site develop' 'server dev'",
"site": "yarn workspace @howtographql/oss",
"server": "yarn workspace @howtographql/server",
"theme": "yarn workspace @howtographql/gatsby-theme",
"publish": "lerna publish --skip-git",
"lerna": "lerna",
"deploy": "npm-run-all --parallel deploy:server",
"deploy:server": "bash ./.scripts/deploy.sh"
},
"workspaces": {
"packages": [
"packages/**",
"oss"
]
},
"devDependencies": {
"apollo": "^2.10.0",
"husky": "^2.4.1",
"now": "^15.3.0",
"npm-run-all": "^4.1.5",
"pretty-quick": "^1.11.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}