-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.81 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "react-universal",
"version": "1.0.0",
"description": "Example react universal",
"main": "api/app.js",
"scripts": {
"babel": "babel api -d dist/api -s",
"build": "rimraf dist && npm run babel",
"lint": "npm run lint-api && npm run lint-src && npm run lint-plop",
"lint-api": "eslint api --fix",
"lint-src": "eslint src --fix",
"lint-plop": "eslint plop --fix",
"api-dev": "nodemon --watch api --exec \"babel-node\" api/app.js",
"client-dev": "webpack-dev-server --config webpack/dev.config.babel.js --config-name=client",
"server-dev": "concurrent \"webpack --watch --config webpack/dev.config.babel.js --config-name=server\" \"npm run server-dev-start\"",
"server-dev-start": "just-wait -p \"dist/*.js\" && nodemon --watch dist/server.js dist/server.js",
"dev": "concurrent \"npm run api-dev\" \"npm run client-dev\" \"npm run server-dev\" \"npm run open\"",
"open": "opn http://localhost:9000/",
"test": "npm run lint"
},
"config": {
"ghooks": {
"ppre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/omrilitov/react-universal.git"
},
"keywords": [
"react",
"universal"
],
"author": "Omri Litov",
"license": "MIT",
"bugs": {
"url": "https://github.com/omrilitov/react-universal/issues"
},
"homepage": "https://github.com/omrilitov/react-universal#readme",
"private": true,
"devDependencies": {
"babel-cli": "~6.26.0",
"babel-core": "~6.26.0",
"babel-eslint": "~7.2.3",
"babel-loader": "~7.1.2",
"babel-plugin-transform-class-properties": "~6.24.1",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-preset-es2015": "~6.24.1",
"babel-preset-react": "~6.24.1",
"babel-register": "~6.26.0",
"concurrently": "~2.2.0",
"css-loader": "~0.28.5",
"eslint": "~3.4.0",
"eslint-config-noamokman": "~3.0.1",
"eslint-plugin-react": "~6.2.0",
"ghooks": "~1.0.3",
"isomorphic-style-loader": "~4.0.0",
"just-wait": "~1.0.5",
"less": "~2.7.1",
"less-loader": "~4.0.5",
"nodemon": "~1.10.2",
"opn-cli": "~3.1.0",
"plur": "~2.1.2",
"react-hot-loader": "3.0.0-beta.6",
"redux-devtools": "~3.3.1",
"redux-devtools-dock-monitor": "~1.1.1",
"redux-devtools-log-monitor": "~1.0.11",
"rimraf": "~2.5.4",
"uppercamelcase": "~1.1.0",
"url-loader": "~0.5.9",
"webpack": "~3.5.5",
"webpack-dev-server": "~2.7.1",
"webpack-node-externals": "~1.6.0"
},
"dependencies": {
"api-error-handler": "~1.0.0",
"axios": "~0.14.0",
"body-parser": "~1.15.2",
"bunyan": "~1.8.1",
"bunyan-format": "~0.2.1",
"compression": "~1.6.2",
"cookie-parser": "~1.4.3",
"dotenv": "~2.0.0",
"email-address": "~1.2.2",
"express": "~4.14.0",
"express-async-router": "~0.1.10",
"express-jwt": "~3.4.0",
"express-mongoose-errors": "~0.2.0",
"http-errors": "~1.5.0",
"http-proxy": "~1.14.0",
"http-reject-empty": "~1.0.0",
"jsonwebtoken": "~5.7.0",
"lodash": "~4.15.0",
"material-ui": "~0.15.4",
"method-override": "~2.3.6",
"mongoose": "~4.6.0",
"mongoose-plugin-seed": "~0.4.0",
"morgan": "~1.7.0",
"passport": "~0.3.2",
"passport-facebook": "~2.1.1",
"passport-google-oauth": "~1.0.0",
"passport-local-mongoose": "~4.0.0",
"pify": "~2.3.0",
"react": "~15.3.1",
"react-cookie": "~0.4.8",
"react-dom": "~15.3.1",
"react-helmet": "~3.1.0",
"react-redux": "~4.4.5",
"react-router": "~2.7.0",
"react-router-redux": "~4.0.5",
"react-tap-event-plugin": "~1.0.0",
"redux": "~3.5.2",
"redux-connect": "~3.0.0",
"redux-form": "~6.0.2",
"redux-form-material-ui": "~4.0.1",
"redux-simple-promise": "~2.0.2",
"serialize-javascript": "~1.3.0",
"serve-favicon": "~2.3.0"
}
}