forked from hoalongnatsu/react-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.29 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
106
107
108
{
"name": "react-starter-kit",
"version": "0.1.0",
"license": "MIT",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.6.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.53",
"antd": "^4.17.2",
"axios": "^0.21.4",
"lodash.clonedeep": "^4.5.0",
"node-sass": "5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.1.2",
"react-intl": "^5.20.10",
"react-redux": "^7.2.5",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-topbar-progress-indicator": "^4.1.0",
"redux": "^4.1.1",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"typescript": "^4.0.3",
"web-vitals": "^0.2.4",
"workbox-background-sync": "^5.1.3",
"workbox-broadcast-update": "^5.1.3",
"workbox-cacheable-response": "^5.1.3",
"workbox-core": "^5.1.3",
"workbox-expiration": "^5.1.3",
"workbox-google-analytics": "^5.1.3",
"workbox-navigation-preload": "^5.1.3",
"workbox-precaching": "^5.1.3",
"workbox-range-requests": "^5.1.3",
"workbox-routing": "^5.1.3",
"workbox-strategies": "^5.1.3",
"workbox-streams": "^5.1.3"
},
"scripts": {
"start:dev": "env-cmd -e dev craco start",
"build:dev": "env-cmd -e dev craco build",
"jest:dev": "env-cmd -e dev craco test",
"start:testing": "env-cmd -e testing craco start",
"build:testing": "env-cmd -e testing craco build",
"jest:testing": "env-cmd -e testing craco test",
"cypress": "cypress open",
"cy:run": "cypress run --config video=false --browser chrome",
"cy:test": "start-server-and-test start:testing http://localhost:3000 cy:run",
"eject": "react-scripts eject",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"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"
]
},
"jest": {
"moduleNameMapper": {
"^@root(.*)$": "<rootDir>/src$1",
"^@core(.*)$": "<rootDir>/src/core$1",
"^@modules(.*)$": "<rootDir>/src/modules$1",
"^@store(.*)$": "<rootDir>/src/store$1",
"^@utils(.*)$": "<rootDir>/src/utils$1",
"^@mock(.*)$": "<rootDir>/src/mock$1"
}
},
"devDependencies": {
"@craco/craco": "^6.3.0",
"@cypress/react": "^5.10.0",
"@cypress/webpack-dev-server": "^1.6.0",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^16.9.1",
"@types/react-dom": "^17.0.9",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"cypress": "^8.4.0",
"env-cmd": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.4.1",
"redux-devtools-extension": "^2.13.9",
"start-server-and-test": "^1.14.0"
}
}