-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
{
"name": "linksforall-api",
"version": "0.5.1",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsx watch --no-warnings src/server.ts",
"lint": "eslint src/",
"lint:fix": "eslint --fix-dry-run src/",
"build": "tsc",
"prisma:seed": "tsx prisma/seed.ts",
"prisma:studio": "prisma studio",
"test": "vitest run --project UNIT",
"test:watch": "vitest --project UNIT",
"test:e2e": "vitest run --project E2E",
"test:e2e:watch": "vitest --project E2E",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^10.1.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.25",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.25",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^4.0.13",
"@vitest/ui": "^4.0.13",
"eslint": "^8.57.1",
"prisma": "^7.0.0",
"supertest": "^7.1.4",
"tsx": "^3.14.0",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
},
"dependencies": {
"@prisma/adapter-pg": "^7.0.0",
"@prisma/client": "^7.0.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"zod": "^4.2.1"
}
}