This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
120 lines (120 loc) · 3.58 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "react-typescript-admin",
"description": "A starter template for TypeScript and React with AntDesign and Dva",
"version": "1.0.1",
"private": true,
"dependencies": {
"@ant-design/compatible": "^1.0.8",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@storybook/addon-knobs": "^6.1.21",
"@testing-library/react": "^11.2.5",
"@types/classnames": "^2.2.11",
"@types/dva": "^1.1.0",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.34",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.9.6",
"@types/react": "^17.0.3",
"@types/react-document-title": "^2.0.4",
"@types/react-dom": "^17.0.2",
"@types/react-infinite-scroller": "^1.2.1",
"@types/react-loadable": "^5.5.4",
"@types/react-motion": "^0.0.29",
"@types/redux-logger": "^3.0.8",
"@types/storybook__addon-knobs": "^5.0.4",
"@types/storybook__react": "^5.2.1",
"antd": "^4.14.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"commitizen": "^4.2.3",
"date-fns": "^2.19.0",
"dva": "^2.4.1",
"dva-loading": "^3.0.22",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.1",
"faker": "^5.4.0",
"history": "^5.0.0",
"jest-fetch-mock": "^3.0.3",
"lodash": "^4.17.21",
"lodash-decorators": "^6.0.1",
"node-sass": "^5.0.0",
"nprogress": "^0.2.0",
"path-to-regexp": "^6.2.0",
"qs": "^6.9.6",
"query-string": "^6.14.1",
"react": "^17.0.1",
"react-document-title": "^2.0.3",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"react-infinite-scroller": "^1.2.4",
"react-loadable": "^5.5.0",
"react-motion": "^0.5.2",
"react-test-renderer": "^17.0.1",
"redux-logger": "^3.0.6",
"source-map-explorer": "^2.5.2",
"typescript": "^4.2.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": "CI=true yarn test",
"jest:win": "set CI=true&&yarn test",
"coverage": "npm test -- --coverage",
"tslint": "tslint --fix 'src/**/*.(ts|tsx)'",
"mock": "json-server mock/db.js",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"lint-staged": {
"*.(ts|tsx)": [
"npm run check"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/addons": "^6.1.21",
"@storybook/react": "^6.1.21",
"babel-plugin-import": "^1.13.3",
"cross-env": "^7.0.3",
"customize-cra": "^1.0.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"react-app-rewire-hot-loader": "^2.0.1",
"react-app-rewired": "^2.1.8",
"react-scripts": "^4.0.3",
"redux-mock-store": "^1.5.4",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0",
"tslint-lines-between-class-members": "^1.3.4",
"tslint-react": "^5.0.0",
"tslint-react-hooks": "^2.2.2",
"webpack-cli": "^4.5.0"
},
"engines": {
"node": ">= 8.9.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}