forked from f5devcentral/f5-waf-policy-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.46 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
{
"name": "f5-waf-policy-editor",
"version": "0.1.0",
"private": true,
"engines": {
"node": "16.x.x"
},
"author": "ALT-F1 SRL",
"license": "Apache-2.0",
"dependencies": {
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.1.1",
"@mui/lab": "^5.0.0-alpha.55",
"@mui/material": "^5.1.1",
"@mui/styles": "^5.1.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/node": "^12.20.37",
"@types/react": "^17.0.36",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^17.0.11",
"dotenv": "^16.0.3",
"immer": "^9.0.6",
"jsonschema": "^1.4.0",
"lodash": "^4.17.21",
"lodash-move": "^1.1.1",
"prismjs": "^1.25.0",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-ga4": "^2.0.0",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-simple-code-editor": "^0.11.0",
"react-split-pane": "^0.1.92",
"redux": "^4.1.2",
"sass": "^1.43.4",
"scroll-into-view-if-needed": "^2.2.28",
"typescript": "^4.5.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/lodash": "^4.14.177",
"@types/prismjs": "^1.16.6",
"@types/query-string": "^6.3.0",
"@types/react-router-dom": "^5.3.2",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^2.4.1",
"redux-devtools-extension": "^2.13.9"
},
"scripts": {
"start": "react-scripts start",
"start:debug": "react-scripts start",
"build": "react-scripts build",
"build:dev": "PUBLIC_URL='/dev/' react-scripts build",
"build:newui": "PUBLIC_URL='/newui/' react-scripts build",
"build:rc": "PUBLIC_URL='/rc/' react-scripts build",
"build:prod": "PUBLIC_URL='/prod/' react-scripts build",
"test": "react-scripts 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"
]
}
}