-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 KB
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
{
"name": "cms-server",
"version": "0.0.1",
"description": "Server-side of CMS framework.",
"license": "MIT",
"scripts": {
"test": "ava test --verbose --fail-fast",
"dev:server": "nodemon src/server.js",
"dev:schedule": "nodemon src/schedule.js",
"dev": "run-p dev:server dev:schedule",
"stop": "pm2 stop ecosystem.config.js",
"reload": "pm2 reload ecosystem.config.js",
"ensure": "node tool/db-ensure",
"start": "run-s ensure reload"
},
"dependencies": {
"decamelize": "^1.2.0",
"escape-string-regexp": "^1.0.5",
"fs-extra-promise": "^1.0.1",
"ioredis": "^3.0.0",
"koa": "^2.2.0",
"koa-body": "^2.0.0",
"koa-captcha-2": "^1.0.0",
"koa-helmet": "^3.1.0",
"koa-mount": "^3.0.0",
"koa-qs": "^2.0.0",
"koa-ratelimit": "^4.0.0",
"koa-redis": "^3.0.0",
"koa-router": "^7.1.1",
"koa-session": "^5.0.0",
"koa-static": "^3.0.0",
"lodash": "^4.17.4",
"mongodb": "^2.2.28",
"mongo-model-2": "^0.0.9",
"mongo-sanitize": "^1.1.0",
"node-schedule": "^1.2.3",
"pluralize": "^5.0.0",
"require-dir": "^0.3.2",
"require-directory": "^2.1.1",
"signal-exit": "^3.0.2",
"uuid": "^3.0.1",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"devDependencies": {
"ava": "^0.19.1",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"sinon": "^2.3.2",
"supertest": "^3.0.0"
}
}