-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "social-webapp-backend",
"version": "1.0.0",
"private": true,
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"scripts": {
"start": "NODE_CONFIG_DIR=./build/config node build/src/app.js",
"dev": "tsx watch ./src/app.ts",
"test": "jest",
"build": "npx prisma generate && npm run build:ts && npm run build:post",
"build:ts": "tsc",
"build:post": "npm run build:post:replace",
"build:post:replace": "replace \"exports\\.default\" \"module.exports\" ./build/config/*.js"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@prisma/client": "^5.18.0",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"config": "^3.3.12",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"morgan": "^1.10.0",
"pino": "^9.3.1",
"pino-pretty": "^11.2.1",
"prom-client": "^15.1.3",
"response-time": "^2.3.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.7",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/config": "^3.3.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.7",
"@types/luxon": "^3.4.2",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.10",
"@types/response-time": "^2.3.8",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"prisma": "^5.18.0",
"replace": "^1.2.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.3",
"ts-node-dev": "^2.0.0",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
}
}