-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.85 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.85 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
{
"name": "forms-api",
"version": "1.8.0",
"description": "Machine-to-machine interface for downloading form submissions",
"repository": "git@github.com:cds-snc/forms-api.git",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"start": "node build/server.js",
"dev": "tsx watch --ignore \"./utils/**/*\" --ignore \"./test/**/*\" --ignore \"./build/**/*\" src/server.ts",
"test": "vitest run",
"lint": "biome lint --write --diagnostic-level=warn .",
"lint:github": "biome ci --reporter=github .",
"lint:check": "biome lint --error-on-warnings --diagnostic-level=warn .",
"format": "biome format --write .",
"format:check": "biome format ."
},
"keywords": [],
"author": "Canadian Digital Service",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.823.0",
"@aws-sdk/client-s3": "^3.823.0",
"@aws-sdk/client-sqs": "^3.823.0",
"@aws-sdk/lib-dynamodb": "^3.823.0",
"@aws-sdk/s3-request-presigner": "^3.859.0",
"@gcforms/database": "^1.0.8",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-validator": "^7.2.0",
"got": "^14.4.7",
"jose": "^5.9.3",
"pino": "^9.4.0",
"rate-limiter-flexible": "^5.0.4",
"redis": "^4.7.0"
},
"devDependencies": {
"@aws-sdk/types": "^3.662.0",
"@biomejs/biome": "^1.9.0",
"@types/cors": "^2.8.18",
"@types/express": "^4.17.21",
"@types/node": "^22.7.4",
"@types/supertest": "^6.0.2",
"aws-sdk-client-mock": "^4.0.2",
"pino-pretty": "^11.2.2",
"supertest": "^7.0.0",
"tsc-alias": "^1.8.15",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.9",
"vitest-mock-express": "^2.2.0",
"vitest-mock-extended": "^4.0.0"
},
"packageManager": "pnpm@10.33.4"
}