-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.37 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
69
70
{
"name": "menumend-web",
"version": "0.0.1",
"main": "static/js/main.js",
"scripts": {
"devserver": "NODE_ENV=development APP_ENV=devserver APP_TARGET=testing node server.js",
"build": "NODE_ENV=development APP_TARGET=testing webpack --progress",
"build-watch": "NODE_ENV=development APP_TARGET=testing webpack --progress --watch",
"build-testing": "NODE_ENV=production APP_TARGET=testing webpack",
"build-production": "NODE_ENV=production webpack",
"lint": "eslint src --ext js --ext jsx"
},
"private": true,
"analyze": false,
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.42",
"axios": "^0.18.0",
"lodash": "^4.17.5",
"normalize.css": "^8.0.0",
"nuka-carousel": "^4.2.2",
"prop-types": "^15.6.1",
"query-string": "^6.0.0",
"react": "^16.2.0",
"react-autocomplete": "^1.8.1",
"react-copy-to-clipboard": "^5.0.1",
"react-custom-scroll": "^3.1.0",
"react-dom": "^16.2.0",
"react-native-svg": "^6.3.1",
"react-native-web": "^0.5.3",
"react-native-web-modal": "^1.0.1",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scroll-to-component": "^1.0.2",
"recharts": "^1.0.0-beta.10",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.2.0",
"shiitake": "^2.2.4",
"svgs": "^3.2.1",
"url-loader": "^1.0.1",
"validate.js": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.42",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-react": "^7.0.0-beta.42",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.0-beta.2",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-react-native-web": "^0.5.3",
"cors-anywhere": "^0.4.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"exports-loader": "^0.7.0",
"react-hot-loader": "^4.0.0",
"react-native-web-image-loader": "0.0.5",
"webpack": "^4.3.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
}
}