-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "node-api-solid",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "node build/server.cjs",
"build": "tsup src --out-dir build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.28.2",
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "25.2.3",
"@vitest/coverage-v8": "4.0.18",
"@vitest/ui": "4.0.18",
"eslint": "10.0.0",
"eslint-config-prettier": "10.1.8",
"prettier": "3.8.1",
"prisma": "7.4.0",
"tsup": "8.5.1",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.55.0",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.0.18"
},
"dependencies": {
"@prisma/adapter-pg": "7.4.0",
"@prisma/client": "7.4.0",
"bcryptjs": "3.0.3",
"dotenv": "17.3.1",
"fastify": "5.7.4",
"pg": "8.18.0",
"zod": "4.3.6"
}
}