-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 989 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 989 Bytes
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
{
"name": "desmond-wedding-node",
"version": "1.0.0",
"description": "Backend for Desmond's wedding game",
"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": {
"@koa/cors": "^3.1.0",
"dotenv": "^8.2.0",
"exceljs": "^4.3.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.37"
},
"devDependencies": {
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-router": "^7.0.40",
"@types/node": "^12.20.25",
"nodemon": "^1.19.0",
"pm2": "^3.5.0",
"ts-node": "^8.1.0",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.4.5"
}
}