-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "form-builder",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^7.1.0",
"@reduxjs/toolkit": "^2.2.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"antd": "^5.16.2",
"craco-less": "^3.0.1",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"prettier": "^3.2.5",
"qs": "^6.12.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-json-editor-ajrm": "^2.5.14",
"react-redux": "^9.1.1",
"react-router-dom": "^6.22.3",
"react-scripts": "5.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.3.0",
"styled-components": "^6.1.8",
"vanilla-jsoneditor": "^0.23.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"dumi": "cross-env APP_ROOT=dumi dumi dev",
"dumi-build": "cross-env APP_ROOT=dumi dumi build",
"start": "cross-env REACT_APP_ENVIRONMENT=development craco start",
"build:test": "env-cmd -f .env.test craco build",
"build:sim": "env-cmd -f .env.simulation craco build",
"build": "cross-env REACT_APP_ENVIRONMENT=production GENERATE_SOURCEMAP=false craco build",
"test": "craco test",
"eject": "react-scripts eject"
},
"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": {
"cross-env": "^7.0.3",
"terser-webpack-plugin": "^5.3.10"
}
}