-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "koa-mongo-redis",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "./node_modules/.bin/nodemon ./bin/www",
"dev": "./node_modules/.bin/nodemon --inspect ./bin/www",
"prd": "pm2 start bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix ./",
"deploy": "./deploy.sh"
},
"dependencies": {
"@types/generic-pool": "^3.1.2",
"@types/jsonwebtoken": "^7.2.7",
"@types/koa-compose": "^3.2.2",
"@types/koa-generic-session": "^1.0.2",
"@types/koa-helmet": "^3.1.2",
"@types/koa-jwt": "^3.3.0",
"@types/koa-redis": "^3.0.2",
"@types/koa-route": "^3.2.3",
"@types/mongodb": "^3.0.23",
"@types/pinyin": "^2.8.0",
"@types/ws": "^5.1.2",
"co": "^4.6.0",
"debug": "^3.1.0",
"generic-pool": "^3.4.2",
"jsonwebtoken": "^8.3.0",
"koa": "^2.2.0",
"koa-body": "^4.0.4",
"koa-bodyparser": "^3.2.0",
"koa-compose": "^4.1.0",
"koa-convert": "^1.2.0",
"koa-generic-session": "^2.0.1",
"koa-helmet": "^4.0.0",
"koa-json": "^2.0.2",
"koa-jwt": "^3.3.2",
"koa-logger": "^2.0.1",
"koa-onerror": "^1.2.1",
"koa-redis": "^3.1.2",
"koa-route": "^3.2.0",
"koa-router": "^7.1.1",
"koa-static": "^3.0.0",
"koa-views": "^5.2.1",
"mongodb": "^3.1.0",
"pinyin": "^2.8.3",
"pug": "^2.0.0-rc.1",
"ws": "^5.2.1"
},
"devDependencies": {
"@types/eslint": "^4.16.2",
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-koa": "^2.0.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"nodemon": "^1.17.5"
}
}