generated from cds-snc/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.72 KB
/
package.json
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
{
"name": "forms-api",
"version": "1.3.1",
"description": "Machine-to-machine interface for downloading form submissions",
"repository": "[email protected]: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.662.0",
"@aws-sdk/client-secrets-manager": "^3.662.0",
"@aws-sdk/client-sqs": "^3.662.0",
"@aws-sdk/lib-dynamodb": "^3.662.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-validator": "^7.2.0",
"jose": "^5.9.3",
"pg-promise": "^11.9.1",
"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/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.10",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2",
"vitest-mock-express": "^2.2.0"
},
"packageManager": "[email protected]"
}