-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
53
54
55
56
57
58
59
{
"name": "recatch-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development nodemon --watch src/**/* -e ts,tsx --exec ts-node ./src/bin/www",
"build": "tsc -P tsconfig.json --declaration false --sourceMap false",
"start:prod": "pm2 start ecosystem.config.js --env production --name recatch-service",
"start:docker": "cross-env NODE_ENV=production pm2-docker start ./build/bin/www.js"
},
"pre-commit": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yvanwangl/recatch-service.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yvanwangl/recatch-service/issues"
},
"homepage": "https://github.com/yvanwangl/recatch-service#readme",
"dependencies": {
"@koa/cors": "^2.2.1",
"@types/blueimp-md5": "^2.7.0",
"@types/ioredis": "^3.2.5",
"@types/koa": "^2.0.39",
"@types/koa-router": "^7.0.23",
"@types/lodash": "^4.14.85",
"@types/reflect-metadata": "0.0.5",
"blueimp-md5": "^2.10.0",
"cross-env": "^5.1.1",
"formidable": "^1.1.1",
"ioredis": "^3.2.2",
"iwinter": "^0.5.4",
"koa": "^2.4.1",
"koa-body": "^2.5.0",
"koa-router": "^7.2.1",
"koa-session": "^5.5.1",
"koa-static": "^4.0.2",
"lodash": "^4.17.4",
"mongoose": "^4.13.0",
"mz": "^2.6.0",
"nodemailer": "^4.4.1",
"pm2-docker": "^2.1.0",
"pre-commit": "^1.2.2",
"qiniu": "^7.1.1",
"reflect-metadata": "^0.1.10",
"typescript": "^2.6.1"
},
"devDependencies": {
"nodemon": "^1.12.1",
"ts-node": "^3.3.0"
}
}