-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.59 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.59 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
{
"name": "helfi-hav",
"version": "1.0.0",
"description": "Search monitoring for HELfi projects with elastic-proxy.",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:ts && node --test --test-reporter=tap --experimental-test-coverage --test-force-exit -r ts-node/register test/**/*.test.ts",
"test:ci": "mkdir -p coverage && node --test --test-reporter=lcov --experimental-test-coverage --test-reporter-destination coverage/lcov.info --test-force-exit -r ts-node/register test/**/*.test.ts",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "npm run copy:assets; tsc",
"copy:assets": "mkdir -p dist; cp -R src/templates dist/",
"dev": "npm run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"tsc -w\" \"npm:dev:start\"",
"dev:start": "fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js",
"info": "fastify print-routes ./routes/root.ts",
"lint": "biome check --write src/",
"lint:check": "biome check src/",
"hav:init-mongodb": "node dist/bin/hav-init-mongodb.js",
"hav:update-subscription-length": "node dist/bin/hav-update-subscription-length.js",
"hav:populate-queue": "node dist/bin/hav-populate-queue.js",
"hav:send-queue": "node dist/bin/hav-send-queue.js",
"hav:test-sms-sending": "node dist/bin/hav-test-sms-sending.js",
"hav:test-email-templates": "node dist/bin/hav-test-email-templates.js",
"hav:test-all-templates": "node dist/bin/hav-test-all-templates.js",
"hav:run-dialogi-test-server": "node dist/bin/hav-dialogi-test-server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^6.3.1",
"@fastify/mongodb": "^9.0.2",
"@fastify/sensible": "^6.0.3",
"@fastify/type-provider-typebox": "^6.1.0",
"@immobiliarelabs/fastify-sentry": "^9.0.1",
"@sinclair/typebox": "^0.34.41",
"axios": "^1.6.7",
"dotenv": "^16.3.1",
"fastify": "^5.6.2",
"fastify-cli": "^7.4.1",
"fastify-mailer": "^2.3.1",
"fastify-plugin": "^5.1.0",
"google-libphonenumber": "^3.2.44",
"jsdom": "^24.0.0",
"minimist": "^1.2.8",
"nodemailer": "^8.0.5",
"sprightly": "^2.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/google-libphonenumber": "^7.4.30",
"@types/jsdom": "^21.1.6",
"@types/minimist": "^1.2.5",
"@types/node": "^22.19.1",
"@types/nodemailer": "^6.4.14",
"concurrently": "^8.2.2",
"fastify-tsconfig": "^3.0.0",
"ts-node": "^10.4.0",
"typescript": "^5.2.2"
}
}