-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.02 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
{
"name": "greyline-be",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Backend API for Greyline",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "npm run db:bootstrap && npm run server:dev",
"server:dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.build.json",
"start": "npm run server:start",
"server:start": "node dist/server.js",
"check": "tsc --noEmit -p tsconfig.json",
"commitlint": "commitlint --from HEAD~1 --to HEAD --verbose",
"db:bootstrap": "node scripts/dev/bootstrap.mjs",
"db:up": "node scripts/dev/postgres.mjs up",
"db:down": "node scripts/dev/postgres.mjs down",
"db:status": "node scripts/dev/postgres.mjs status",
"db:migrate": "node scripts/dev/migrate.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"@fastify/cors": "^11.1.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/sensible": "^6.0.3",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.6",
"@fastify/type-provider-typebox": "^6.1.0",
"@sinclair/typebox": "^0.34.49",
"argon2": "^0.44.0",
"dotenv": "^16.6.1",
"fastify": "^5.6.1",
"fastify-plugin": "^5.1.0",
"jose": "^6.2.3",
"pg": "^8.16.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.29.0",
"@types/node": "^24.0.3",
"@types/pg": "^8.20.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,js,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}