forked from RibbtDev/ssr
-
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) · 850 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 850 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
34
35
{
"name": "app-cards",
"version": "1.1.0",
"description": "Server-side Rendering React from Scratch!",
"main": "index.js",
"engines": {
"node": "8.10.0",
"npm": "5.7.1"
},
"scripts": {
"start": "node index.js",
"pack": "webpack --config webpack.config.js",
"babel": "babel src -d views",
"build": "npm run pack && npm run babel"
},
"author": "Rohit kumar",
"license": "CC BY 4.0",
"dependencies": {
"express": "^4.16.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}