-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.69 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.69 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
{
"name": "hot-webrex",
"version": "1.0.0",
"description": "A barebone boilerplate to start a new app with Webpack, React, and Express stack",
"main": "build/server",
"scripts": {
"test": "mocha",
"clean": "rm -rf build",
"build": "npm run clean && webpack",
"build-local": "npm run clean && webpack",
"local": "npm run build-local && npm run start",
"start": "NODE_ENV=production npm run build && node build/server",
"prettier": "prettier --write '**/*.js' --config .prettierrc.json"
},
"keywords": [
"react-hot-boilerplate",
"express-webpack-react-hot",
"express-webpack-dev-server-hot"
],
"author": "backyardcoder",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"express": "^4.16.3",
"raf": "^3.4.0",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^1.0.0",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"ignore-styles": "^5.0.1",
"jsdom": "^12.0.0",
"mini-css-extract-plugin": "^0.4.2",
"mocha": "^5.2.0",
"node-sass": "^4.9.3",
"nodemon-webpack-plugin": "^4.0.3",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"prettier": "1.14.2",
"proxyquire": "^2.1.0",
"react-hot-loader": "^4.3.4",
"sass-loader": "^7.1.0",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"style-loader": "^0.22.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-node-externals": "^1.7.2"
}
}