-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.63 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
{
"name": "tech-blog",
"version": "1.0.0",
"description": "explore and practice",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development gulp dev",
"lint": "eslint ./ --ext .js,.jsx",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production gulp build",
"serve": "NODE_ENV=production pm2 start build/backend.js -f -i 0 --name tech-blog",
"deploy": "npm run build && npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ustccjw/tech-blog.git"
},
"keywords": [
"react",
"falcor",
"express"
],
"author": "ustccjw",
"license": "MIT",
"bugs": {
"url": "https://github.com/ustccjw/tech-blog/issues"
},
"homepage": "https://github.com/ustccjw/tech-blog#readme",
"dependencies": {
"body-parser": "^1.15.0",
"compression": "^1.6.1",
"cookie-parser": "^1.4.1",
"errorhandler": "^1.4.3",
"es6-template-strings": "^2.0.0",
"express": "^4.13.4",
"express-session": "^1.13.0",
"extract-text-webpack-plugin": "^1.0.1",
"falcor": "^0.1.17",
"falcor-express": "^0.1.2",
"falcor-http-datasource": "^0.1.3",
"falcor-router": "^0.4.0",
"halogen": "^0.2.0",
"highlight.js": "^9.3.0",
"ioredis": "^1.15.1",
"method-override": "^2.3.5",
"morgan": "^1.7.0",
"mz": "^2.4.0",
"node-fetch": "^1.5.1",
"nprogress": "^0.2.0",
"query-string": "^4.1.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-remarkable": "^1.1.1",
"react-router": "^2.3.0",
"response-time": "^2.3.1",
"serve-favicon": "^2.3.0",
"serve-static": "^1.10.2"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.3",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"del": "^2.2.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-import-resolver-webpack": "^0.2.0",
"eslint-plugin-import": "^1.5.0",
"eslint-plugin-jsx-a11y": "^1.0.2",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"gulp": "github:gulpjs/gulp#4.0",
"node-noop": "^1.0.0",
"postcss": "^5.0.19",
"postcss-cssnext": "^2.5.2",
"postcss-loader": "^0.8.2",
"postcss-nested": "^1.0.0",
"redbox-react": "^1.2.3",
"source-map-support": "^0.4.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}