-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 1.02 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
{
"private": true,
"workspaces": [
"packages/*"
],
"name": "iflux-mono-repos",
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@types/koa": "^2.0.48",
"@types/koa-route": "^3.2.4",
"@types/fs-extra": "^5.1.0",
"@types/react-test-renderer": "^16.8.1",
"@types/node": "^11.13.2",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.3",
"@types/jest": "^24.0.11",
"jest": "^24.7.1",
"ts-jest": "^24.0.2",
"react-test-renderer": "^16.8.6",
"lerna": "^3.13.2",
"mock-jest-console": "^1.1.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"husky": "^1.3.1",
"typescript": "^3.4.5"
},
"scripts": {
"test": "npx jest",
"test:watch": "npx jest --watch --verbose"
},
"prettier": {
"tabWidth": 2,
"singleQuote": true,
"printWidth": 80,
"jsxSingleQuote": true,
"jsxBracketSameLine": false
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}