-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.41 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
{
"name": "vigilant-bassoon",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"lint:check": "tslint --project ./tsconfig.tslint.json",
"lint": "yarn run lint:check --fix",
"eject": "react-scripts-ts eject"
},
"dependencies": {
"eslint": "5.9.0",
"react": "16.6.1",
"react-dom": "16.6.1",
"react-redux": "5.1.0",
"redux": "4.0.1",
"redux-actions": "2.6.4",
"uuid": "3.3.2"
},
"devDependencies": {
"@types/enzyme": "3.1.15",
"@types/enzyme-adapter-react-16": "1.0.3",
"@types/jest": "23.3.9",
"@types/node": "10.12.5",
"@types/react": "16.7.2",
"@types/react-dom": "16.0.9",
"@types/react-redux": "^6.0.9",
"@types/redux-actions": "^2.3.1",
"@types/uuid": "3.4.4",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.0",
"enzyme-to-json": "3.3.4",
"husky": "1.1.3",
"lint-staged": "8.0.4",
"prettier": "1.15.2",
"react-scripts-ts": "3.1.0",
"tslint-config-prettier": "1.15.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn run lint",
"git add"
],
"*.{json,css,js,jsx,md}": [
"prettier --write",
"git add"
]
}
}