forked from luoyjx/gaoqi-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.54 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
{
"name": "gaoqi-blog",
"version": "1.0.6",
"private": true,
"main": "app.js",
"description": "A Node.js blog using MongoDB",
"repository": {
"type": "git",
"url": "git+https://github.com/luoyjx/gaoqi-blog.git"
},
"customHost": [
"blog.gaoqixhb.com"
],
"scripts": {
"dev": "node app.js",
"preinstall": "node bin/pre_install.js",
"build": "./node_modules/.bin/loader views .",
"prestart": "npm install && npm run build",
"start": "cross-env NODE_ENV=production ./node_modules/.bin/pm2 start app.js --name 'gaoqiblog' -i max --node-args='--max-old-space-size=300'",
"prerestart": "npm install && npm run build",
"restart": "cross-env NODE_ENV=production ./node_modules/.bin/pm2 restart gaoqiblog",
"reboot": "cross-env NODE_ENV=production ./node_modules/.bin/pm2 restart gaoqiblog",
"pretest": "npm install",
"test": "mocha --reporter spec -r should -r test/env --timeout 10000 ./test/**/*.test.js",
"pretest-cov": "npm install",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -r should -r test/env --timeout 10000 ./test/**/*.test.js -R spec"
},
"engines": {
"node": ">=6"
},
"dependencies": {
"bcryptjs": "^2.3.0",
"bluebird": "^3.4.1",
"body-parser": "^1.17.0",
"compression": "^1.6.2",
"connect-busboy": "0.0.2",
"connect-redis": "^3.1.0",
"cookie-parser": "^1.4.3",
"cors": "^2.7.1",
"cross-env": "^5.0.0",
"csurf": "^1.9.0",
"data2xml": "^1.2.5",
"ejs-mate": "^2.3.0",
"express": "^4.15.0",
"express-session": "^1.14.0",
"gravatar": "^1.5.2",
"html2markdown": "*",
"ioredis": "^3.0.0",
"loader": "^2.1.1",
"loader-builder": "^2.3.0",
"lodash": "^4.15.0",
"lynx": "^0.2.0",
"markdown-it": "^8.0.0",
"method-override": "^2.3.6",
"mkdirp": "^0.5.1",
"moment": "^2.14.1",
"mongoose": "^4.6.8",
"multiline": "^1.0.2",
"node-uuid": "^1.4.7",
"nodejieba": "^2.2.4",
"nodemailer": "^2.5.0",
"nodemailer-smtp-transport": "^2.7.3",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"pm2": "^2.4.2",
"qn": "^1.3.0",
"ready": "^0.1.1",
"request": "^2.75.0",
"response-time": "^2.3.1",
"twit": "^2.2.5",
"utility": "^1.8.0",
"validator": "^7.0.0",
"xmlbuilder": "^9.0.0",
"xss": "*"
},
"devDependencies": {
"coveralls": "*",
"errorhandler": "*",
"istanbul": "*",
"loader-connect": "*",
"mm": "*",
"mocha": "3.4.1",
"nock": "*",
"pedding": "*",
"should": "*",
"supertest": "*"
}
}