-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.2 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "backend",
"version": "0.1.0",
"main": "dist/src/server.js",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"db:init": "ts-node scripts/dbInit.ts",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"tsoa:build": "tsoa spec-and-routes",
"build": "yarn tsoa:build && tsc",
"start": "node dist/src/server.js",
"lint": "eslint src scripts --ext .ts --fix",
"_format": "prettier 'src/**/*.ts' 'scripts/**/*.ts'",
"format": "yarn _format --write",
"format:check": "yarn _format --check",
"format-lint": "yarn format && yarn lint",
"test": "yarn jest",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"yarn format-lint"
]
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/better-sqlite3": "^7.6.0",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/jest": "^29.0.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.184",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.14",
"@types/pg": "^8.6.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"better-sqlite3": "^7.6.2",
"concurrently": "^7.3.0",
"eslint": "^8.22.0",
"husky": "^8.0.0",
"jest": "^29.0.3",
"jest-extended": "^3.1.0",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-rate-limit": "^6.6.0",
"helmet": "^6.0.0",
"http-errors": "^2.0.0",
"inversify": "^6.0.1",
"inversify-binding-decorators": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"multer": "^1.4.5-lts.1",
"pg": "^8.7.3",
"pino": "^8.5.0",
"pino-http": "^8.2.0",
"pino-pretty": "^9.1.0",
"reflect-metadata": "^0.1.13",
"tsoa": "^4.1.2",
"typeorm": "^0.3.7"
}
}