-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.43 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
49
{
"scripts": {
"prepare": "husky install",
"dev": "tsup ./src/server.ts --watch --onSuccess \"dotenv -e .env.dev -- node ./dist/server.js\"",
"test": "dotenv -e .env.dev -- jest",
"build": "tsup ./src/server.ts --minify"
},
"devDependencies": {
"@jest-mock/express": "2.0.2",
"@jest/globals": "29.6.1",
"@types/compression": "1.7.2",
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/jsonwebtoken": "9.0.2",
"@types/node": "20.4.5",
"@types/nodemailer": "6.4.9",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "5.61.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard-with-typescript": "37.0.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "16.0.1",
"eslint-plugin-promise": "6.1.1",
"husky": "8.0.3",
"jest": "29.6.1",
"jest-mock-extended": "3.0.4",
"lint-staged": "13.2.3",
"prettier": "3.0.0",
"prisma": "5.0.0",
"ts-jest": "29.1.1",
"tsup": "7.1.0",
"typescript": "5.1.6"
},
"dependencies": {
"@prisma/client": "5.0.0",
"compression": "1.7.4",
"cors": "2.8.5",
"dotenv-cli": "7.2.1",
"envalid": "7.3.1",
"express": "4.18.2",
"express-async-errors": "3.1.1",
"helmet": "7.0.0",
"jsonwebtoken": "9.0.1",
"nodemailer": "6.9.4",
"swagger-ui-express": "5.0.0"
}
}