-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 935 Bytes
/
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
{
"name": "express",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"start:dev": "nodemon",
"lint": "eslint ./src/**",
"lint:fix": "eslint ./src/** --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"generate": "prisma generate"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.7.1",
"@types/bcryptjs": "^2.4.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"inversify": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.20",
"reflect-metadata": "^0.1.13",
"tslog": "^4.4.4"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"prisma": "^4.7.1",
"typescript": "^4.9.4"
}
}