-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.32 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
{
"scripts": {
"start": "tsc-watch -p tsconfig-build.json --onSuccess 'pretty-quick --pattern \"**/*.js\"' --onFirstSuccess 'jest --watch'",
"test:all": "jest",
"lint:all": "eslint --fix . && prettier --write '{,!(node_modules|dist|build|coverage)/**/}*.*' '!*.{log,lock,map}' '!**/.*' '!package-lock.json'",
"lint:staged": "lint-staged",
"analyze": "ts-node analyze/analyze"
},
"lint-staged": {
"*.{ts,js,json}": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged",
"pre-push": "npm run lint:staged"
}
},
"devDependencies": {
"@types/eslint": "^6.1.8",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/prettier": "^2.0.0",
"@types/pretty-quick": "^2.0.0",
"@types/ramda": "^0.27.3",
"@types/tsc-watch": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"chalk": "^4.0.0",
"eslint": "^6.8.0",
"fast-safe-stringify": "^2.0.7",
"glob": "^7.1.6",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"ramda": "^0.27.0",
"ts-jest": "^25.2.1",
"tsc-watch": "^4.1.0",
"typescript": "^3.8.2"
}
}