generated from NoQuarterTeam/boilerplate-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
42
43
44
45
46
47
48
49
50
{
"name": "root",
"private": true,
"version": "1.0.0",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build:api": "cd packages/api && yarn build",
"heroku-prebuild": "rm -rf packages/web",
"heroku-cleanup": "cd packages/api && yarn generate",
"build": "yarn build:api",
"typecheck": "lerna run typecheck",
"lint": "lerna run lint",
"ci": "yarn typecheck && yarn lint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lerna run --concurrency 1 --stream pre-commit",
"pre-push": "node ./hooks/pre-push.js"
}
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-flowtype": "5.10.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"husky": "4.3.8",
"lerna": "4.0.0",
"lint-staged": "11.2.1",
"prettier": "2.4.1",
"readline-sync": "1.4.10",
"rimraf": "3.0.2",
"shelljs": "0.8.4",
"typescript": "4.4.3"
},
"resolutions": {
"prettier": "2.4.1"
}
}