This repository has been archived by the owner on Nov 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.63 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
{
"name": "m4m_frontend",
"version": "0.0.1",
"description": "M4M Web App",
"main": "index.js",
"scripts": {
"test": "npm run eslint && echo Warning: No test specified",
"eslint": "eslint .",
"build-dev": "webpack --config build/webpack.dev.conf.js --progress",
"build-prod": "webpack --config build/webpack.prod.conf.js --progress",
"start": "webpack-dev-server --config build/webpack.dev.conf.js --history-api-fallback",
"start-proxy": "node build/proxy.js",
"start-dev": "webpack-dev-server --config build/webpack.dev.conf.js --history-api-fallback",
"start-dev-proxy": "concurrently --kill-others \"npm run start-proxy\" \"webpack-dev-server --config build/webpack.dev.proxy.conf.js --history-api-fallback\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/M4MController/frontend.git"
},
"author": "M4M",
"license": "ISC",
"bugs": {
"url": "https://github.com/M4MController/frontend/issues"
},
"homepage": "https://github.com/M4MController/frontend#readme",
"dependencies": {
"axios": "^0.18.0",
"express-http-proxy": "^1.2.0",
"i18next": "^10.6.0",
"normalize.css": "^8.0.0",
"npm": "^6.0.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scrollbar": "^0.5.4",
"redux": "^3.7.2",
"redux-orm": "^0.9.4",
"redux-promise": "^0.5.3",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"webpack-cli": "^2.0.12"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.42",
"@babel/plugin-proposal-export-default-from": "^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-core": "^7.0.0-0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"concurrently": "^3.5.1",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.1",
"core-js": "^2.5.4",
"css-loader": "^0.28.11",
"eslint": "^4.18.2",
"eslint-plugin-react": "^7.7.0",
"express": "^4.16.3",
"html-webpack-plugin": "^3.1.0",
"http-proxy-middleware": "latest",
"node-sass": "^4.7.2",
"redux-devtools-extension": "^2.13.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.1.1",
"webpack-dev-middleware": "^3.0.1",
"webpack-dev-server": "^3.1.1",
"webpack-hot-middleware": "^2.21.2",
"webpack-merge": "^4.1.2"
}
}