-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "simple-books-service",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"build": "tsoa spec-and-routes && tsc",
"local": "tsoa spec-and-routes && prisma generate && tsc && ts-node .",
"start:migrate:prod": "prisma generate && prisma migrate deploy && node dist/index.js",
"prisma:generate": "prisma generate"
},
"author": "LD5Coffee",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/adapter-pg": "^5.18.0",
"@prisma/client": "^5.18.0",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mailgun.js": "^10.2.3",
"pg": "^8.12.0",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.4.0",
"typedi": "^0.10.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/swagger-ui-express": "^4.1.6",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"prisma": "^5.18.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
}
}