-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.71 KB
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
65
66
{
"name": "react-training",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "24.0.11",
"@types/node": "11.12.2",
"@types/react": "16.8.10",
"@types/react-dom": "16.8.3",
"@types/react-redux": "^7.0.6",
"@types/react-router-dom": "^4.3.1",
"@types/redux-mock-store": "^1.0.0",
"calendar": "^0.1.0",
"concurrently": "^4.1.1",
"connected-react-router": "^6.3.2",
"date-fns": "^1.30.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-to-json": "^3.3.5",
"history": "^4.9.0",
"husky": "^1.3.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"redux-observable": "^1.1.0",
"rxjs": "^6.4.0",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"typesafe-actions": "^3.2.1",
"typescript": "3.4.1"
},
"scripts": {
"start": "concurrently --kill-others \"react-scripts start\" \"npm run server\"",
"build": "react-scripts build",
"test": "react-scripts test --watchAll",
"eject": "react-scripts eject",
"server": "json-server --watch --port=4000 server/index.js ",
"lint": "tslint 'src/**/*.{ts,tsx}'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}