-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 728 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 728 Bytes
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": "ssr-on-zeit",
"version": "1.0.0",
"description": "Simple example of SSR React app running on the @zeit platform",
"private": true,
"scripts": {
"build": "webpack",
"deploy": "npm run build && now",
"alias": "npm run deploy && now alias"
},
"keywords": [
"zeit",
"now",
"ssr",
"react",
"lambda",
"webpack"
],
"author": "Mudit Ameta <zeusdeux@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-router-dom": "^4.3.1"
}
}