-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 970 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 970 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"serve": "node dist/index.js",
"test": "env-cmd -f ./.test.env vitest",
"test:ci": "vitest"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-only",
"devDependencies": {
"@faker-js/faker": "^9.6.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"@types/supertest": "^6.0.3",
"crypto": "^1.0.1",
"supertest": "^7.1.0",
"vitest": "^3.0.9"
},
"prisma": {
"schema": "src/db/schema.prisma"
},
"dependencies": {
"@prisma/client": "^6.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"env-cmd": "^10.1.0",
"express": "^4.21.2",
"firebase-admin": "^13.2.0",
"pg": "^8.14.1",
"prisma": "~6.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}