-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.76 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.76 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
{
"scripts": {
"dev": "NODE_ENV=development webpack --config webpack/dev.config.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack/dev.config.js",
"build": "NODE_ENV=production webpack --progress --config webpack/prod.config.js"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/plugin-transform-async-to-generator": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@nextcloud/browserslist-config": "^1.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"eslint": "^7.19.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"json-loader": "0.5.7",
"mini-css-extract-plugin": "^1.3.5",
"postcss": "^8.2.4",
"postcss-loader": "^5.0.0",
"postcss-nested": "^5.0.3",
"postcss-preset-env": "^6.7.0",
"react-a11y": "1.1.0",
"react-addons-css-transition-group": "^15.6.2",
"react-hot-loader": "4.13.0",
"strip-loader": "^0.1.2",
"style-loader": "^2.0.0",
"webpack": "^5.20.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "3.11.2",
"webpack-hot-middleware": "^2.25.0"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"@babel/runtime": "^7.12.13",
"oc-react-components": "^0.2.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-dropzone": "11.3.0",
"react-responsive": "8.2.0",
"react-scrolla": "0.3.1"
}
}