-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.21 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
65
66
67
68
69
70
{
"name": "@deploystack/backend",
"version": "0.20.5",
"scripts": {
"dev": "node --env-file=.env --require ts-node/register src/index.ts",
"build": "tsc",
"start": "node --env-file=.env dist/index.js",
"lint": "eslint --config eslint.config.ts 'src/**/*.ts' --fix",
"db:generate": "drizzle-kit generate",
"db:up": "drizzle-kit up",
"release": "release-it --config=.release-it.js",
"test:e2e": "jest",
"test:unit": "vitest",
"test:unit:coverage": "vitest --coverage",
"api:spec": "node scripts/generate-api-spec.js",
"api:spec:json": "curl -s http://localhost:3000/documentation/json > api-spec.json",
"api:spec:yaml": "curl -s http://localhost:3000/documentation/yaml > api-spec.yaml"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.1",
"@fastify/swagger": "^9.5.1",
"@fastify/swagger-ui": "^5.2.3",
"@lucia-auth/adapter-drizzle": "^1.1.0",
"@node-rs/argon2": "^2.0.2",
"arctic": "^3.7.0",
"argon2": "^0.43.0",
"better-sqlite3": "^11.10.0",
"drizzle-orm": "^0.44.0",
"fastify": "^5.3.3",
"fastify-favicon": "^5.0.0",
"lucia": "^3.2.2",
"nodemailer": "^6.9.8",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"pug": "^3.0.2",
"zod": "^3.25.42",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.27.0",
"@release-it/conventional-changelog": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/nodemailer": "^6.4.14",
"@types/pug": "^2.0.10",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"@vitest/coverage-v8": "^3.2.4",
"drizzle-kit": "^0.31.1",
"eslint": "^9.29.0",
"fs-extra": "^11.3.0",
"jest": "^29.7.0",
"release-it": "^19.0.2",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"vitest": "^3.2.3"
},
"overrides": {
"glob": "^10.0.0",
"inflight": "npm:@isaacs/inflight@^1.0.6"
}
}