-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.92 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.92 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@deploystack/backend",
"version": "0.61.2",
"scripts": {
"dev": "nodemon",
"build": "tsc && webpack --mode=production",
"build:dev": "tsc && webpack --mode=development",
"build:watch": "tsc && webpack --mode=development --watch",
"start": "node --env-file=.env dist/index.js",
"lint": "eslint --config eslint.config.ts 'src/**/*.ts' --fix",
"check:no-console": "node scripts/check-no-console.js",
"postgres:local": "bash scripts/run-local-postgres.sh",
"db:generate": "drizzle-kit generate --config=drizzle.config.ts",
"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.2.0",
"@fastify/formbody": "^8.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/sse": "^0.4.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@lucia-auth/adapter-drizzle": "^1.1.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@node-rs/argon2": "^2.0.2",
"@octokit/auth-app": "^8.2.0",
"@octokit/request": "^10.0.7",
"@octokit/rest": "^22.0.1",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"arctic": "^3.7.0",
"drizzle-orm": "^0.45.1",
"fastify": "^5.7.4",
"fastify-favicon": "^5.0.0",
"lucia": "^3.2.2",
"nanoid": "^5.1.6",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.1",
"pg": "^8.18.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"pug": "^3.0.2",
"sanitize-html": "^2.17.0",
"zod": "^4.3.6",
"zod-openapi": "^5.4.6"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^10.0.1",
"@release-it/conventional-changelog": "^10.0.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/nodemailer": "^7.0.10",
"@types/pg": "^8.16.0",
"@types/pug": "^2.0.10",
"@types/sanitize-html": "^2.16.0",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.24",
"copy-webpack-plugin": "^13.0.1",
"drizzle-kit": "^0.31.9",
"eslint": "^10.0.0",
"fs-extra": "^11.3.3",
"jest": "^30.2.0",
"node-loader": "^2.1.0",
"nodemon": "^3.1.11",
"release-it": "^19.2.4",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.56.1",
"vitest": "^3.2.4",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}