-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.18 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
{
"name": "docker-ssr",
"version": "0.1.1",
"description": "A Dockerized SSR runtime using Express.",
"repository": "[email protected]:thegreenhouseio/docker-ssr.git",
"author": "Owen Buckley <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"lint": "eslint *.js ./src/**/*.jsx",
"develop": "webpack-dev-server --config ./webpack.config.develop.js",
"build": "yarn lint && rimraf ./dist && webpack --config ./webpack.config.common.js --progress",
"serve": "yarn run build && cpx ./dist/**/ ./static/ && babel-node --presets=@babel/preset-env,@babel/preset-react ./server.js"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"cpx": "^1.5.0",
"eslint": "^4.17.0",
"express": "^4.16.3",
"eslint-plugin-react": "^7.6.1",
"html-webpack-plugin": "^2.30.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "^4.1.1"
}
}