-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "inventory-api",
"version": "1.0.0",
"description": "Node Inventory API",
"license": "ISC",
"author": "",
"private": true,
"type": "module",
"main": "index.js",
"scripts": {
"test": "vitest run --reporter=tree",
"test:watch": "vitest",
"test:database": "vitest run --config vitest.database.config.ts --reporter=tree",
"test:database:colima": "DOCKER_HOST=unix://$HOME/.colima/default/docker.sock TESTCONTAINERS_DOCKER_SOCKET_OVERRIDE=/var/run/docker.sock npm run test:database",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"dev": "tsx watch src/main.ts",
"start": "node dist/main.js",
"clean": "node --input-type=module --eval \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc -p tsconfig.build.json"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testcontainers/postgresql": "^12.0.4",
"@types/express": "^5.0.6",
"@types/node": "^26.1.0",
"@types/pg": "^8.20.0",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.9"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"argon2": "^0.44.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"graphql": "^16.14.2",
"graphql-yoga": "^5.21.2",
"jose": "^6.2.3",
"pg": "^8.22.0",
"prisma": "^7.8.0",
"ulid": "^3.0.2",
"zod": "^4.4.3"
},
"allowScripts": {
"fsevents@2.3.3": true,
"esbuild@0.28.1": true,
"@prisma/engines@7.8.0": true,
"prisma@7.8.0": true,
"protobufjs@7.6.5": true,
"ssh2@1.17.0": true,
"cpu-features@0.0.10": true,
"argon2@0.44.0": true
},
"overrides": {
"@prisma/dev": {
"@hono/node-server": "1.19.13"
}
}
}