-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.04 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
{
"name": "redux-zero-ssr-example",
"version": "1.0.0",
"description": "An SSR redux-zero example",
"repository": "https://github.com/Guru107/redux-zero-ssr-example.git",
"author": "Gurudatt Kulkarni <guruak107@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rimraf public build",
"start": "NODE_ENV=development PORT=8080 node ./src/run.js",
"start:prod": "yarn run clean && NODE_ENV=production PORT=8080 node ./src/run.js"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-module-resolver": "3.0.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.10",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"rimraf": "2.6.2",
"webpack": "3.8.1",
"webpack-dev-middleware": "1.12.0",
"webpack-dev-server": "2.9.4",
"webpack-hot-middleware": "2.20.0",
"webpack-hot-server-middleware": "0.3.0",
"webpack-node-externals": "1.6.0"
},
"dependencies": {
"express": "4.16.2",
"react": "16.1.0",
"react-dom": "16.1.0",
"redux-zero": "4.4.2"
}
}