-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.75 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
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
95
96
97
98
99
100
101
102
103
104
{
"name": "veritable-ui",
"version": "0.15.10",
"description": "UI for Veritable",
"main": "src/index.ts",
"type": "module",
"author": "Digital Catapult",
"license": "Apache-2.0",
"engines": {
"node": "^22.0.0",
"npm": "^10.0.0"
},
"scripts": {
"depcheck": "depcheck",
"test:unit": "NODE_ENV=test ./node_modules/.bin/mocha --config ./test/mocharc.json ./src/**/*.test.ts",
"test:integration": "NODE_ENV=test ./node_modules/.bin/mocha --config ./test/mocharc.json ./test/**/*.test.ts",
"test:testcontainers": "NODE_ENV=test ./node_modules/.bin/mocha --config ./test/mocharc.json ./test/testcontainers/*.test.ts",
"test:e2e": "playwright test --ui",
"test:playwright": "playwright test --trace on --max-failures=1",
"check": "npm run tsoa:build && tsc --noEmit",
"build": "npm run tsoa:build && swc ./src -d ./build --strip-leading-paths --copy-files",
"tsoa:build": "tsoa spec-and-routes",
"tsoa:watch": "node --watch-path=./src ./node_modules/.bin/tsoa spec-and-routes",
"dev": "concurrently \"npm run tsoa:watch\" \"SWCRC=true NODE_ENV=dev node --import @swc-node/register/esm-register --enable-source-maps --watch-path=./src --watch-path=./build/swagger.json ./src/index.ts | pino-colada\"",
"dev:init": "NODE_ENV=dev node --import @swc-node/register/esm-register src/init.ts | pino-colada",
"init": "node build/init.js",
"start": "node build/index.js",
"db:cmd": "node --import @swc-node/register/esm-register ./node_modules/.bin/knex",
"db:migrate": "npm run db:cmd -- migrate:latest",
"db:rollback": "npm run db:cmd -- migrate:rollback",
"db:seed": "npm run db:cmd -- seed:run",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"xss-scan": "xss-scan"
},
"dependencies": {
"@digicatapult/tsoa-oauth-express": "^0.1.75",
"@kitajs/html": "^4.2.4",
"@kitajs/ts-html-plugin": "^4.1.0",
"@tsoa/runtime": "^6.5.1",
"@types/compression": "^1.7.5",
"argon2": "^0.41.1",
"body-parser": "^2.0.2",
"compression": "^1.7.5",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.21.1",
"htmx-ext-json-enc": "^2.0.1",
"htmx.org": "^2.0.3",
"knex": "^3.1.0",
"nodemailer": "^6.9.16",
"pg": "^8.13.1",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.5.1",
"tsyringe": "^4.8.0",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@playwright/test": "^1.49.0",
"@swc-node/register": "^1.10.9",
"@swc/cli": "^0.5.1",
"@swc/core": "^1.9.3",
"@types/body-parser": "^1.19.5",
"@types/chai": "^5.0.1",
"@types/chai-jest-snapshot": "^1.3.8",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.9",
"@types/nodemailer": "^6.4.17",
"@types/pino-http": "^5.8.4",
"@types/sinon": "^17.0.3",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.7",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"chai": "^5.1.2",
"chai-jest-snapshot": "^2.0.0",
"concurrently": "^9.1.0",
"depcheck": "^1.4.7",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"pino-colada": "^2.2.2",
"playwright": "^1.49.0",
"playwright-ctrf-json-reporter": "^0.0.18",
"prettier": "^3.4.1",
"prettier-plugin-organize-imports": "^4.1.0",
"sinon": "^19.0.2",
"supertest": "^7.0.0",
"testcontainers": "^10.15.0",
"typescript": "^5.7.2",
"undici": "^6.21.0"
}
}