-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "root",
"private": true,
"workspaces": [
"plugins/*"
],
"scripts": {
"build:dist": "lerna run --stream --sort build:dist",
"clean:dist": "lerna run --stream --sort clean:dist",
"format": "prettier --write \"**/*.ts\" \"!**/dist/**\" \"!**/dist-esm/**\"",
"lint": "eslint \"plugins/**/*.ts\" -f eslint-formatter-friendly",
"p": "lerna publish --conventional-commits",
"p:force:all": "lerna publish --force-publish=*",
"pre-commit": "lerna run --stream --sort pre-commit",
"prepare": "lerna run --stream --sort prepare",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn pre-commit"
}
},
"lint-staged": {
"**/*.ts": [
"prettier --write",
"eslint --fix"
],
"**/*.{json,md}": [
"prettier --write"
],
"**/package.json": [
"sort-package-json"
]
},
"dependencies": {
"tslib": "^2.1.0"
},
"devDependencies": {
"@jcm/eslint-config": "^0.0.2",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-formatter-friendly": "^7.0.0",
"eslint-plugin-prettier": "^3.3.1",
"graphql": "^15.5.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"nexus": "^1.0.0",
"np": "^7.2.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sort-package-json": "^1.48.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"peerDependencies": {
"nexus": ">= 1.0.0"
}
}