forked from usgeeus/X_TWICE_BackEnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"name": "x-twice-backend",
"version": "1.0.0",
"description": "Example how to use Koa and TypeORM with TypeScript.",
"devDependencies": {
"@types/jsonwebtoken": "^8.5.4",
"@types/koa": "^2.13.3",
"@types/koa__cors": "^3.0.3",
"@types/koa-bodyparser": "^4.3.1",
"@types/koa-router": "^7.4.2",
"@types/node": "^15.14.0",
"@types/multer": "^1.4.7",
"@types/node-fetch": "^2.5.12",
"jest": "^27.0.6",
"ts-jest": "^25.2.1",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@types/dotenv": "^8.2.0",
"axios": "^0.21.1",
"caver-js": "^1.6.3",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"class-validator-jsonschema": "^3.1.0",
"dotenv": "^10.0.0",
"form-data": "^4.0.0",
"jimp": "^0.16.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"koa2-swagger-ui": "^5.2.0",
"multer": "^1.4.3",
"mysql": "^2.18.1",
"node-fetch": "^2.3.0",
"routing-controllers": "^0.9.0",
"routing-controllers-openapi": "^3.1.0",
"typedi": "^0.10.0",
"typeorm": "^0.2.34"
},
"scripts": {
"start": "pm2 start ./ecosystem.config.js --only X_TWICE_BackEnd -o ./api.log -e ./error.log",
"restart": "pm2 delete X_TWICE_BackEnd && pm2 start ./ecosystem.config.js --only X_TWICE_BackEnd -o ./api.log -e ./error.log",
"dev": "ts-node-dev --respawn ./src/index.ts",
"build": "mkdir -p build && tsc",
"rebuild": "mkdir -p build && rm -r ./build && tsc"
}
}