-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.88 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.88 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
90
91
92
93
94
{
"name": "nr-peach",
"version": "0.1.0",
"license": "Apache-2.0",
"private": true,
"description": "NR Permitting Exchange, Aggregation and Collection Hub",
"author": "NRM Permitting and Data Solutions <NRM.PermittingAndData@gov.bc.ca>",
"type": "module",
"main": "server.ts",
"scripts": {
"commitlint": "commitlint",
"codegen": "kysely-codegen --url $(node dburl.helper.ts)",
"clean": "rimraf coverage",
"debug": "node --inspect=0.0.0.0:9229 server.ts",
"dev": "node --watch-path=./src server.ts",
"eslint": "eslint",
"format": "prettier --check --write \"**/*.{js,json,md,ts,yaml}\"",
"kysely": "kysely",
"lint": "eslint",
"lint:fix": "eslint --fix",
"migrate:down": "kysely migrate down",
"migrate:latest": "kysely migrate latest",
"migrate:list": "kysely migrate list",
"migrate:make": "kysely migrate make",
"migrate:rollback": "kysely migrate rollback --all",
"migrate:up": "kysely migrate up",
"postcodegen": "npm run format",
"postformat": "npm run lint:fix",
"postinstall": "lefthook install",
"postlint": "npm run typecheck",
"prettier": "prettier",
"purge": "rimraf node_modules",
"seed:list": "kysely seed list",
"seed:make": "kysely seed make",
"seed:run": "kysely seed run",
"start": "cross-env NODE_ENV=production node server.ts",
"test": "vitest",
"test:shuffle": "vitest --sequence.shuffle",
"tsc": "tsc",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@tsconfig/node24": "24.0.4",
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"compression": "1.8.1",
"cors": "2.8.6",
"cross-env": "10.1.0",
"express": "5.2.1",
"express-rate-limit": "8.3.1",
"fast-json-stable-stringify": "2.1.0",
"helmet": "8.1.0",
"js-yaml": "4.1.1",
"jsonwebtoken": "9.0.3",
"jwks-rsa": "4.0.1",
"kysely": "0.28.14",
"kysely-codegen": "0.20.0",
"kysely-ctl": "0.20.0",
"lru-cache": "11.2.7",
"pg": "8.20.0",
"pino": "10.3.1",
"pino-http": "11.0.0",
"serve-favicon": "2.5.1",
"uuid": "13.0.0"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/js": "10.0.1",
"@types/compression": "1.8.1",
"@types/cors": "2.8.19",
"@types/express": "5.0.6",
"@types/js-yaml": "4.0.9",
"@types/k6": "1.6.0",
"@types/node": "24.12.0",
"@types/pg": "8.20.0",
"@types/qs": "6.15.0",
"@types/serve-favicon": "2.5.7",
"@types/supertest": "7.2.0",
"@vitest/coverage-v8": "4.1.0",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsdoc": "62.8.0",
"eslint-plugin-prettier": "5.5.5",
"lefthook": "2.1.4",
"pino-pretty": "13.1.3",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"supertest": "7.2.2",
"typescript": "5.9.3",
"typescript-eslint": "8.57.1",
"vitest": "4.1.0"
}
}