-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.31 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.31 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "react-typescript-admin",
"description": "A starter template for TypeScript and React with AntDesign and Dva",
"version": "0.1.0",
"private": true,
"dependencies": {
"@stomp/stompjs": "^5.2.0",
"@types/classnames": "^2.2.7",
"@types/dva": "^1.1.0",
"@types/echarts": "^4.1.4",
"@types/enzyme": "^3.1.18",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "24.0.6",
"@types/node": "11.9.4",
"@types/qs": "^6.5.1",
"@types/query-string": "^6.2.0",
"@types/react": "16.8.3",
"@types/react-document-title": "^2.0.3",
"@types/react-dom": "16.8.2",
"@types/react-infinite-scroller": "^1.2.1",
"@types/react-loadable": "^5.5.0",
"@types/redux-form": "^7.5.2",
"@types/redux-logger": "^3.0.7",
"antd": "^3.13.5",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"date-fns": "^1.30.1",
"dva": "^2.4.1",
"dva-loading": "^2.0.6",
"echarts": "^4.1.0",
"echarts-for-react": "^2.0.15-beta.0",
"echarts-gl": "^1.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.5",
"history": "^4.7.2",
"jest-fetch-mock": "^2.1.1",
"lodash": "^4.17.11",
"lodash-decorators": "^6.0.1",
"mockjs": "^1.0.1-beta3",
"node-sass": "^4.11.0",
"path-to-regexp": "^3.0.0",
"qs": "^6.6.0",
"query-string": "^6.2.0",
"react": "^16.8.2",
"react-document-title": "^2.0.3",
"react-dom": "^16.8.2",
"react-hot-loader": "^4.7.1",
"react-infinite-scroller": "^1.2.4",
"react-loadable": "^5.5.0",
"react-test-renderer": "^16.8.3",
"redux-form": "^8.1.0",
"redux-logger": "^3.0.6",
"source-map-explorer": "^1.7.0",
"typescript": "3.3.3"
},
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"check": "tslint --project ./tsconfig.json",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"staging": "cross-env REACT_APP_BUILD=staging react-app-rewired start",
"test": "react-app-rewired test",
"jest": "react-app-rewired test --env=jsdom --no-watch",
"tslint": "tslint --fix 'src/**/*.ts*'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run jest"
}
},
"lint-staged": {
"*.ts*": [
"npm run check"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-plugin-import": "^1.11.0",
"cross-env": "^5.2.0",
"customize-cra": "^0.2.11",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"react-app-rewire-hot-loader": "^2.0.1",
"react-app-rewired": "^2.1.0",
"react-scripts": "2.1.5",
"redux-mock-store": "^1.5.3",
"tslint": "^5.12.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-lines-between-class-members": "^1.3.1",
"tslint-react": "^3.6.0",
"webpack-cli": "^3.2.3"
},
"engines": {
"node": ">= 8.9.0"
}
}