-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.82 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
{
"name": "react-isomorphic",
"version": "1.0.0",
"private": false,
"author": "pspgbhu <[email protected]>",
"site": "http://pspgbhu.me",
"scripts": {
"start": "cross-env NODE_ENV=production node bin/www",
"build": "cross-env NODE_ENV=production node client/build/build.js",
"prd": "pm2 start server/pm2.config.json bin/www",
"dev": "npm run dev:client & npm run dev:server",
"dev:server": "./node_modules/.bin/nodemon bin/www",
"dev:client": "gulp watch"
},
"dependencies": {
"autoprefixer": "^8.0.0",
"axios": "^0.18.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-plugin-dynamic-import-node": "^2.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-require-ignore": "^0.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"chalk": "^2.3.2",
"cross-env": "^5.1.3",
"css-loader": "^0.28.10",
"debug": "^2.6.3",
"ejs": "~2.5.5",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"gulp": "^3.9.1",
"history": "^4.7.2",
"koa": "^2.2.0",
"koa-bodyparser": "^3.2.0",
"koa-convert": "^1.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^2.0.1",
"koa-onerror": "^1.2.1",
"koa-router": "^7.1.1",
"koa-static": "^3.0.0",
"koa-views": "^5.2.1",
"koa-webpack": "^3.0.2",
"less": "^3.0.1",
"less-loader": "^4.0.6",
"lodash": "^4.17.5",
"mini-css-extract-plugin": "^0.4.1",
"node-notifier": "^5.2.1",
"node-sass": "^4.8.3",
"opn": "^5.2.0",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-loader": "^2.1.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.2",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.6.0",
"webpack-isomorphic-tools": "^3.0.5",
"webpack-merge": "^4.1.2"
},
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-react": "^7.7.0",
"nodemon": "^1.8.1"
},
"nodemonConfig": {
"ignore": [
".git",
"node_modules/**/node_modules",
"server/public"
],
"ext": "js json jsx",
"env": {
"NODE_ENV": "development"
}
}
}