-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·62 lines (62 loc) · 1.36 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
{
"name": "tslint-plugin-relay",
"version": "0.0.3",
"description": "",
"main": "build/tslint-base.json",
"author": "Ash Furrow <[email protected]> & Art.sy Inc",
"license": "MIT",
"peerDependencies": {
"graphql": "^13.0.0 || ^14.0.0"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/lodash": "^4.14.117",
"@types/node": "^10.11.0",
"danger": "^4.0.2",
"graphql": "^14.0.2",
"husky": "^1.0.0",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"lodash": "^4.17.11",
"prettier": "^1.14.3",
"release-it": "^7.6.1",
"ts-jest": "^23.10.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
},
"scripts": {
"type-check": "tsc --noEmit",
"build": "tsc && cp tslint-*.json build/",
"lint": "tslint 'rules/**/*.{ts,tsx}'",
"release": "release-it"
},
"jest": {
"preset": "ts-jest",
"testMatch": [
"**/*.test.ts"
]
},
"prettier": {
"printWidth": 115,
"semi": false,
"singleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"proseWrap": "always"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn build"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"tslint --fix",
"yarn prettier --write",
"git add"
]
}
}