-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "express-todo-list",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsnd --respawn --transpile-only src/index.ts",
"setup": "docker-compose up -d && npx prisma migrate dev",
"cannon": "npx autocannon -c 500 -d 20 -w 10 --renderStatusCodes --latency --debug --warmup [ -c 1 -d 2] localhost:3000/users",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"autocannon": "^7.15.0",
"jest": "^29.7.0",
"prisma": "^5.11.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"@prisma/client": "^5.11.0",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/uuid": "^9.0.8",
"bcrypt": "^5.1.1",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"swagger-jsdoc": "5.0.1",
"swagger-ui-express": "^5.0.0",
"ts-node-dev": "^2.0.0",
"uuid": "^9.0.1"
}
}