-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.89 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.89 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
{
"name": "react-js-base-code",
"version": "0.1.0",
"private": true,
"dependencies": {
"@date-io/moment": "1.x",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^29.1.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"antd": "^4.23.4",
"axios": "^0.26.1",
"i18n-js": "^4.1.1",
"js-sha3": "^0.8.0",
"mobx": "^6.5.0",
"mobx-react-lite": "^3.3.0",
"mobx-state-tree": "^5.1.3",
"moment": "^2.29.1",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2",
"react-scripts": "5.0.0",
"react-spinners": "^0.11.0",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "cross-env GENERATE_SOURCEMAP=false react-scripts start",
"build": "react-scripts build",
"test": "jest --coverage",
"eject": "react-scripts eject",
"postinstall": "npx simple-git-hooks"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/enzyme": "^3.10.12",
"@types/i18n-js": "^3.8.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"simple-git-hooks": "^2.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"lint-staged": {
"**/*": "npx prettier --write --ignore-unknown"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
}
}