-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.05 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
{
"name": "tasker-api",
"version": "0.0.1",
"description": "tasker api",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon ./server.js",
"test:unit": "vitest run tests/unit/**/*.unit.spec.ts tests/unit/*.unit.spec.ts",
"test:integration": "vitest run tests/integration/**/*.integration.spec.ts tests/integration/*.integration.spec.ts",
"test:component": "vitest run tests/component/**/*.component.spec.ts tests/component/*.component.spec.ts",
"test:contract": "vitest run tests/contract/**/*.contract.spec.ts tests/contract/*.contract.spec.ts",
"test": "vitest",
"test:watch": "vitest --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.20.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.0"
},
"devDependencies": {
"nodemon": "^3.1.7",
"prisma": "^5.20.0",
"supertest": "^7.0.0",
"vitest": "^2.1.1"
}
}