-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.06 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.06 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
{
"name": "volantis-base",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development node server/index.js",
"prod": "cross-env NODE_ENV=production node server/index.js",
"test": "eslint src/**/*.{js,jsx}",
"build": "webpack --mode production"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"circular-dependency-plugin": "^5.0.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"html-loader": "^0.5.5",
"mini-css-extract-plugin": "^0.4.2",
"path": "^0.12.7",
"prettier": "^1.14.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.11",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@babel/register": "^7.0.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"es6-promise": "^4.2.4",
"express": "^4.16.3",
"fetch-everywhere": "^1.0.5",
"ignore-styles": "^5.0.1",
"js-cookie": "^2.2.0",
"lodash": "^4.17.19",
"morgan": "^1.9.1",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"serve-favicon": "^2.5.0",
"webpack": "^4.17.2",
"webpack-dev-middleware": "^3.2.0",
"webpack-hot-middleware": "^2.23.1"
}
}