-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.79 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": "rap2-delos",
"version": "1.0.0",
"repository": {
"url": "https://github.com/thx/rap2-delos"
},
"description": "",
"main": "dist/dispatch.js",
"scripts": {
"build": "rimraf -rf dist/ && tsc",
"test": "cross-env NODE_ENV=development cross-env TEST_MODE=true nyc mocha --exit",
"check": "echo \"Checking...\" && tsc && npm run tslint",
"dev": "cross-env NODE_ENV=development nodemon --watch scripts --watch dist dist/scripts/dev.js",
"create-db": "cross-env NODE_ENV=development node dist/scripts/init",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"start": "cross-env NODE_ENV=production pm2 start dist/dispatch.js --name=rap-server-delos",
"start:redis": "pm2 start redis-server --name redis-server",
"clean": "pm2 delete all"
},
"author": "bosn, nuysoft",
"license": "ISC",
"dependencies": {
"chalk": "^2.4.1",
"cluster": "^0.7.7",
"cross-env": "^5.1.1",
"graceful": "^1.0.1",
"is-md5": "^0.0.2",
"js-beautify": "^1.6.9",
"kcors": "^2.2.1",
"koa": "^2.2.0",
"koa-body": "^4.0.1",
"koa-generic-session": "^2.0.1",
"koa-logger": "^3.2.0",
"koa-redis": "^3.1.2",
"koa-router": "^7.1.1",
"koa-send": "^4.0.0",
"koa-static": "^4.0.2",
"ioredis": "^3.2.2",
"lodash": "^4.17.5",
"md5": "^2.2.1",
"mockjs": "^1.0.1-beta3",
"moment": "^2.17.1",
"mysql": "^2.11.1",
"mysql2": "^1.5.1",
"node-fetch": "^2.1.2",
"node-print": "0.0.4",
"notevil": "^1.1.0",
"path-to-regexp": "^2.2.1",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.10",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"sequelize": "^4.28.6",
"sequelize-typescript": "^0.6.4",
"svg-captcha": "^1.3.11",
"underscore": "^1.8.3",
"urllib": "^2.28.1"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/kcors": "^2.2.2",
"@types/koa": "2.0.43",
"@types/koa-generic-session": "^1.0.2",
"@types/koa-logger": "^3.1.0",
"@types/koa-redis": "^3.0.2",
"@types/koa-router": "^7.0.27",
"@types/koa-static": "^4.0.0",
"@types/lodash": "^4.14.106",
"@types/md5": "^2.1.32",
"@types/mocha": "^5.2.0",
"@types/mockjs": "^1.0.0",
"@types/node": "^10.1.0",
"@types/redis": "^2.8.6",
"@types/request": "^2.47.0",
"@types/request-promise": "^4.1.41",
"@types/sequelize": "^4.27.12",
"@types/underscore": "^1.8.8",
"babel-eslint": "^8.2.3",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"nyc": "^12.0.2",
"pm2": "^2.10.2",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.0",
"standard": "^11.0.1",
"supertest": "^3.0.0",
"tslint": "^5.8.0",
"typescript": "^2.9.2"
},
"pre-commit": [
"check"
]
}