-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 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
{
"name": "node-react-server",
"main": "index.js",
"description": "Example NodeJS server with WebPack and ReactJS",
"repository": "https://github.com/idlerun/node-react-server",
"license": "BSD-2-Clause",
"author": "Idle Run",
"engines": {
"node": ">=4.3.2"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-class-properties"
]
},
"scripts": {
"clean": "rm -rf dist",
"dev": "NODE_ENV=development node .",
"start": "node .",
"build": "rm -rf dist && NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile",
"postinstall": "npm run build"
},
"dependencies": {
"babel-core": "6.26.3",
"babel-polyfill": "6.26.0",
"babel-register": "6.26.0",
"babel-runtime": "6.26.0",
"babel-loader": "7.1.5",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"body-parser": "1.19.0",
"css-loader": "2.1.1",
"express": "4.16.4",
"fs": "0.0.2",
"jquery": "3.4.1",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.11",
"log-timestamp": "0.3.0",
"morgan": "1.9.1",
"sass-loader": "7.1.0",
"style-loader": "0.23.1"
},
"devDependencies": {
"node-sass": "4.12.0",
"normalize.css": "8.0.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"copy-webpack-plugin": "4.5.2",
"html-webpack-plugin": "3.2.0",
"uglifyjs-webpack-plugin": "1.3.0",
"webpack": "4.30.0",
"webpack-cli": "3.3.1",
"webpack-dev-middleware": "3.6.2",
"webpack-hot-middleware": "2.24.4"
}
}