-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "typescript-react-ssr-boilerplate",
"version": "0.5.0",
"license": "MIT",
"author": "[email protected]",
"scripts": {
"build-dev": "webpack --watch",
"build": "webpack",
"start-dev": "nodemon build/server.js",
"start": "node build/server.js"
},
"dependencies": {
"@material-ui/core": "^3.1.1",
"express": "^4.16.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-jss": "^8.6.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.11.3",
"@types/react": "^16.4.1",
"@types/react-dom": "^16.0.6",
"@types/react-jss": "^8.6.0",
"@types/react-redux": "^6.0.2",
"@types/react-router-dom": "^4.3.1",
"nodemon": "^1.18.4",
"ts-loader": "^4.4.1",
"typescript": "^2.9.2",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
}
}