-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "node-typescript-boilerplate",
"main": "dist/src/@server.js",
"types": "./dist/src/@server.d.ts",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"engines": {
"node": "12.12.0"
},
"private": true,
"devDependencies": {
"@types/bull": "^3.12.0",
"@types/bull-board": "^0.6.0",
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"supertest": "^4.0.2",
"ts-node": "3.3.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.3.3333"
},
"dependencies": {
"@sentry/node": "^5.11.2",
"@types/app-root-path": "^1.2.4",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/helmet": "0.0.45",
"@types/jsonwebtoken": "^8.3.7",
"@types/node": "^8.10.59",
"@types/uuid": "^3.4.7",
"@types/winston": "^2.4.4",
"app-root-path": "^3.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.1",
"bull": "^3.12.1",
"bull-board": "^0.6.0",
"class-validator": "^0.11.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.15.4",
"express-async-errors": "^3.1.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"pg": "^7.3.0",
"pm2": "^4.2.3",
"reflect-metadata": "^0.1.10",
"ts-node-dev": "^1.0.0-pre.44",
"typeorm": "0.2.22",
"uuid": "^3.4.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"scripts": {
"build": "tsc",
"start": "set debug=* && ts-node-dev --debug --respawn --transpileOnly --ignore-watch node_modules ./src/@server.ts",
"prod": "tsc && pm2 start ./build/src/@server.js",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"migration:run": "npm run typeorm migration:run -- -t each",
"test": "mocha --exit -r ts-node/register 'src/@tests/**/*.test.ts'"
}
}