This repository has been archived by the owner on May 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 2.2 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
{
"name": "universal-react-webpack-boilerplate",
"version": "0.1.0",
"private": true,
"description": "Universal React Webpack Boilerplate",
"main": "dist/server",
"scripts": {
"build": "npm-run-all cleanup copy build:webpack",
"build:webpack": "npm-run-all -p build:webpack:client build:webpack:server",
"build:webpack:client": "NODE_ENV=production webpack --config webpack/webpack.client.config.js",
"build:webpack:server": "NODE_ENV=production webpack --config webpack/webpack.server.config.js",
"cleanup": "rm -rf ./dist",
"copy": "mkdir -p ./dist/public && cp -fR ./src/public/* ./dist/public",
"dev": "node scripts/run start",
"lint": "eslint src webpack config scripts",
"release": "standard-version",
"start": "node dist/server"
},
"author": "Martin Broder <hello@martinbroder.com> <https://martinbroder.com>",
"license": "ISC",
"dependencies": {
"body-parser": "1.17.1",
"compression": "1.6.2",
"express": "4.15.2",
"react": "16.0.0-alpha.8",
"react-dom": "16.0.0-alpha.8",
"react-redux": "5.0.4",
"react-router": "3.0.4",
"redux": "3.6.0",
"redux-actions": "2.0.1",
"redux-promise-middleware": "4.2.0",
"redux-thunk": "2.2.0"
},
"devDependencies": {
"babel-core": "6.24.1",
"babel-eslint": "7.2.2",
"babel-loader": "6.4.1",
"babel-plugin-async-to-promises": "1.0.5",
"babel-plugin-module-resolver": "2.7.0",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"browser-sync": "2.18.8",
"css-loader": "0.28.0",
"eslint": "3.19.0",
"eslint-plugin-react": "6.10.3",
"extract-text-webpack-plugin": "2.1.0",
"lodash.merge": "4.6.0",
"npm-run-all": "4.0.2",
"postcss-cssnext": "2.10.0",
"postcss-import": "9.1.0",
"postcss-loader": "1.3.3",
"react-hot-loader": "3.0.0-beta.6",
"style-loader": "0.16.1",
"webpack": "2.4.1",
"webpack-hot-middleware": "2.18.0",
"webpack-middleware": "1.5.1",
"webpack-node-externals": "1.5.4",
"webpack-stats-plugin": "0.1.5"
}
}