-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.72 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
{
"name": "react-webpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:product": "cross-env NODE_ENV=production webpack --config ./webpackConfig/client.config.js",
"build-client": "webpack --config ./webpackConfig/client.config.js",
"build-server": "webpack --config ./webpackConfig/server.config.js",
"dev:client": "cross-env NODE_ENV=development port=3000 webpack-dev-server --config ./webpackConfig/client.config.js",
"dev:server": "cross-env NODE_ENV=development port=3333 node-dev ./server/server.js",
"build": "npm build-client && npm build-server",
"eslint": "eslint --ext .js --ext .jsx client/",
"precommit": "npm run eslint",
"start": "cross-env NODE_ENV=production node-dev ./server/server.js "
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.0",
"husky": "^0.14.3",
"memory-fs": "^0.4.1",
"open-browser-webpack-plugin": "^0.0.5",
"path": "^0.12.7",
"serve-favicon": "^2.5.0",
"style-loader": "^0.23.1",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"@material-ui/core": "^3.2.2",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-session": "^1.15.6",
"fast-json-stringify": "^1.9.1",
"global": "^4.3.2",
"hoist-non-react-statics": "^3.1.0",
"javascript-stringify": "^1.6.0",
"lodash": "^4.17.11",
"marked": "^0.5.1",
"mobx": "^5.1.2",
"mobx-react": "^5.2.8",
"mobx-react-devtools": "^6.0.3",
"node-dev": "^3.1.3",
"prop-types": "^15.6.2",
"query-string": "^6.1.0",
"react": "^16.5.0",
"react-addons-perf": "^15.4.2",
"react-async-bootstrapper": "^2.1.1",
"react-dom": "^16.5.0",
"react-hot-loader": "^4.3.11",
"react-jss": "^8.6.1",
"react-router": "^4.3.1",
"react-router-config": "^4.4.0-beta.6",
"react-router-dom": "^4.3.1",
"react-simplemde-editor": "^3.6.22"
}
}