-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 KB
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
{
"type": "commonjs",
"dependencies": {
"@prisma/client": "^5.12.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"inversify": "^6.0.2",
"jsonwebtoken": "^9.0.2",
"reflect-metadata": "^0.2.2",
"tslog": "^4.9.2"
},
"scripts": {
"start": "node ./dist/main.js",
"dev": "nodemon",
"lint": "eslint ./src/**",
"lint:fix": "eslint ./src/** --fix",
"build": "tsc",
"generate": "prisma generate",
"test:unit": "jest",
"test:load": "clinic doctor --on-port 'autocannon -c 1 -d 5 -m GET localhost:$PORT/users/register' -- node dist/main.js"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"prisma": "^5.12.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}