-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.16 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
{
"name": "pro-mern-stack-2-ui",
"version": "1.0.0",
"description": "Pro MERN Stack (2nd Edition) UI",
"main": "index.js",
"engines": {
"node": "10.x",
"npm": "6.x"
},
"scripts": {
"#start": "UI server. HMR is enabled in dev mode.",
"start": "node dist/server.js",
"#lint": "Runs ESLint on all relevant files",
"lint": "eslint server src browser --ext js,jsx",
"#compile": "Generates JS bundles for production. Use with start.",
"compile": "webpack --mode production",
"#watch-server-hmr": "Recompile server HMR bundle on changes.",
"watch-server-hmr": "webpack -w --config webpack.serverHMR.js",
"#dev-all": "Dev mode: watch for server changes and start UI server",
"dev-all": "rm dist/* && npm run watch-server-hmr & sleep 5 && npm start",
"heroku-postbuild": "npm run compile && ln -fs ../node_modules/bootstrap/dist public/bootstrap"
},
"repository": {
"type": "git",
"url": "git+https://github.ccs.neu.edu/NEU-CS5610-SU21/JingyiXu-MERN-Book.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.26.0",
"bootstrap": "^3.4.1",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"http-proxy-middleware": "^0.21.0",
"isomorphic-fetch": "^2.2.1",
"nodemon": "^1.19.4",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-bootstrap": "^0.33.1",
"react-dom": "^16.14.0",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^4.3.1",
"react-select": "^2.4.4",
"serialize-javascript": "^1.9.1",
"source-map-support": "^0.5.16",
"url-search-params": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.2.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.3",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}