-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.59 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
{
"name": "@netgen/content-browser-ui",
"description": "Netgen Content Browser user interface",
"version": "1.4.0",
"repository": {
"type": "git",
"url": "https://github.com/netgen-layouts/content-browser-ui.git"
},
"private": true,
"main": "bundle/Resources/public/js/main.js",
"scripts": {
"start": "nodemon --watch .env --watch config --watch scripts node scripts/start.js",
"build": "node scripts/build.js",
"cypress": "cypress open",
"express": "nodemon express/server.js -V -w express",
"test": "CYPRESS_baseUrl=http://localhost:8282 cypress run",
"ci": "start-test 'node express/server.js' 8282 test"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 10",
"not op_mini all"
],
"babel": {
"presets": [
"@babel/react",
"@babel/env"
]
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@svgr/webpack": "^4.3.3",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-named-asset-import": "^0.3.5",
"babel-preset-react-app": "^9.1.0",
"css-loader": "^3.4.0",
"cypress": "^3.8.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"eslint": "^6.7.2",
"eslint-config-react-app": "^5.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"express": "^4.17.1",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.20.0",
"mini-css-extract-plugin": "^0.8.1",
"nodemon": "^2.0.2",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-safe-parser": "^4.0.1",
"sass-loader": "^8.0.0",
"start-server-and-test": "^1.10.6",
"style-loader": "^1.0.2",
"terser-webpack-plugin": "^2.3.1",
"url-loader": "^3.0.0",
"webpack": "^4.41.3",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@material-ui/core": "^4.8.0",
"@material-ui/icons": "^4.5.1",
"cross-fetch": "^3.0.4",
"react": "^16.12.0",
"react-addons-css-transition-group": "^15.6.2",
"react-app-polyfill": "^1.0.5",
"react-dev-utils": "^10.0.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-transition-group": "^4.3.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
}
}