-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
61 lines (61 loc) · 2.05 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "react-universal-starter",
"version": "2.0.0",
"main": "index.js",
"author": "Bhargav Ponnapalli <[email protected]> (https://github.com/imbhargav5)",
"license": "MIT",
"scripts": {
"add-contributor": "all-contributors add",
"generate-contributor": "all-contributors generate",
"build": "npm run build:server && npm run build:client",
"build:client": "cross-env NODE_ENV=production webpack --mode production",
"build:server": "cross-env NODE_ENV=production babel src --out-dir tmp/lib",
"prebuild": "npm run clean",
"clean": "rimraf tmp lib",
"dev": "cross-env NODE_ENV=development nodemon --exec babel-node src/server",
"start": "cross-env NODE_ENV=production node tmp/lib/server",
"deploy": "now --team imbhargav5 && now --team imbhargav5 alias"
},
"dependencies": {
"@babel/core": "7.3.3",
"express": "4.16.4",
"isomorphic-fetch": "2.2.1",
"prop-types": "^15.5.10",
"pug": "^2.0.0-rc.3",
"react": "16.8.2",
"react-dom": "16.8.2",
"react-redux": "^5.0.6",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"redux": "4.0.1",
"redux-thunk": "2.3.0",
"styled-components": "4.1.3",
"webpack-hot-middleware": "2.21.2"
},
"devDependencies": {
"@babel/node": "7.2.2",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"all-contributors-cli": "^4.4.0",
"babel-eslint": "8.2.2",
"babel-loader": "8.0.5",
"babel-plugin-dynamic-import-webpack": "^1.0.1",
"babel-preset-imbhargav5": "3.0.0",
"babel-register": "6.26.0",
"copy-webpack-plugin": "4.5.1",
"cross-env": "^5.2.0",
"eslint-plugin-react": "^7.3.0",
"html-webpack-plugin": "3.0.6",
"html-webpack-pug-plugin": "0.3.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"react-hot-loader": "next",
"rimraf": "^2.6.1",
"sw-precache-webpack-plugin": "0.11.5",
"uglifyjs-webpack-plugin": "1.2.4",
"webpack": "4.29.4",
"webpack-cli": "3.2.3",
"webpack-dev-middleware": "3.5.2"
}
}