-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1 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
{
"name": "urb-react",
"version": "0.1.0",
"scripts": {
"start": "webpack-dev-server --env.CLIENT_ENV=true --mode development --open",
"build": "webpack --mode production --env.CLIENT_ENV=true",
"build:ssr": "webpack --mode production --env.SERVER_ENV=true --config ./webpack.ssr.js",
"postbuild:ssr": "webpack --mode production",
"start:ssr": "nodemon ./server",
"prestart:ssr": "rm -f ./client/dist/index.html"
},
"devDependencies": {
"@types/node": "^10.12.18",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"awesome-typescript-loader": "^5.2.1",
"html-webpack-plugin": "^3.2.0",
"nodemon": "1.18.9",
"typescript": "^3.2.4",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-node-externals": "1.7.2"
},
"dependencies": {
"express": "^4.16.4",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"styled-components": "^4.1.3"
}
}