-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.61 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
{
"name": "ts-koa-starter",
"version": "1.0.0",
"description": "一个简单的koa+typescript+typeorm的起手式",
"tags": [
"orm",
"typescript",
"koa"
],
"scripts": {
"start": "nodemon",
"build": "rm -rf dist && tsc",
"pro": "npx pm2 start ecosystem.config.js --env production",
"restart": "pm2 restart ecosystem.config.js --env production",
"stop": "npx pm2 stop ecosystem.config.js"
},
"dependencies": {
"aws-sdk": "^2.1093.0",
"bluebird": "^3.7.2",
"config": "^3.3.7",
"dotenv": "^8.2.0",
"fs": "^0.0.1-security",
"joi": "^14.3.1",
"joi-i18n-x": "^1.0.4",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-multer": "^1.0.2",
"koa-router": "^7.4.0",
"lodash": "^4.17.21",
"mammoth": "^1.4.21",
"mime-types": "^2.1.35",
"moment": "^2.29.1",
"mysql": "^2.18.1",
"path": "^0.12.7",
"puppeteer": "^13.5.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"typeorm": "^0.3.9",
"winston": "^3.6.0",
"winston-daily-rotate-file": "^4.6.1",
"xlsx": "^0.18.3"
},
"devDependencies": {
"@types/config": "^0.0.41",
"@types/joi": "^17.2.3",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^4.3.6",
"@types/koa-router": "^7.0.33",
"@types/koa2-cors": "^2.0.2",
"@types/lodash": "^4.14.179",
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"nodemon": "^1.19.0",
"pm2": "^3.5.0",
"ts-node": "^8.1.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^6.1.3",
"typescript": "^3.4.5"
}
}