-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"start": "node dist/index.js",
"dev": "nodemon src/application/web.ts",
"format": "prettier ./src ./tests --write",
"build": "tsc"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.24.4",
"@prisma/client": "^5.12.1",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.12",
"bcrypt": "^5.1.1",
"express": "^4.19.2",
"prisma": "^5.12.1",
"supertest": "^6.3.4",
"uuid": "^9.0.1",
"winston": "^3.13.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.1",
"@faker-js/faker": "^8.4.1",
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}