-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "edutrack-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon index.js",
"db:push": "npx prisma db push",
"db:studio": "npx prisma studio",
"test:int": "./scripts/run-integration.sh",
"test:int:win": "./scripts/run-integration.ps1",
"test:int:ui": "./scripts/run-integration.sh --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.6.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"firebase-admin": "^12.0.0",
"prisma": "^5.6.0",
"vitest": "^1.1.1"
},
"devDependencies": {
"@types/supertest": "^6.0.2",
"@vitest/coverage-istanbul": "^1.1.1",
"@vitest/coverage-v8": "^1.1.1",
"@vitest/ui": "^1.1.1",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
}
}