-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.24 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
{
"name": "ml-new-backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"gen:email": "node scripts/gen-email-layout.mjs",
"build": "tsc && tsc-alias",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"seed": "tsx prisma/seed.ts",
"lint": "eslint .",
"test": "NODE_ENV=test node --import tsx --test --test-concurrency=1 --test-force-exit \"test/**/*.test.ts\"",
"test:db:up": "docker compose -f compose.test.yml up -d --wait",
"test:db:down": "docker compose -f compose.test.yml down -v",
"test:db:push": "DATABASE_URL=mysql://ml_test:ml_test@127.0.0.1:3307/ml_test prisma db push",
"test:full": "yarn test:db:up && yarn test:db:push && yarn gen:email && yarn test",
"typecheck": "tsc -p test/tsconfig.json && tsc -p prisma/tsconfig.json"
},
"dependencies": {
"@fastify/autoload": "^6.3.1",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.2.0",
"@fastify/env": "^7.0.0",
"@fastify/rate-limit": "^11.1.0",
"@fastify/session": "^11.1.1",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^6.0.0",
"@fastify/type-provider-typebox": "^6.1.0",
"@prisma/adapter-mariadb": "^7.8.0",
"@prisma/client": "7.8.0",
"@quixo3/prisma-session-store": "^3.1.21",
"@sinclair/typebox": "^0.34.49",
"bcrypt": "^6.0.0",
"express-session": "^1.19.0",
"fastify": "^5.9.0",
"fastify-plugin": "^6.0.0",
"http-status-codes": "^2.3.0",
"nodemailer": "^9.0.1",
"nodemailer-mailgun-transport": "^2.1.5",
"pdfkit": "^0.19.1",
"pdfmake": "^0.3.11",
"typebox": "^1.3.1",
"uuid": "^14.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bcrypt": "^6.0.0",
"@types/mjml": "^5.0.0",
"@types/node": "^26.0.1",
"@types/nodemailer": "^8.0.1",
"@types/nodemailer-mailgun-transport": "^1.4.6",
"@types/pdfkit": "^0.17.6",
"@types/pdfmake": "^0.3.3",
"dotenv": "^17.4.2",
"eslint": "^10.6.0",
"mjml": "^5.3.0",
"prettier": "3.9.1",
"prisma": "^7.8.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.17",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0"
},
"private": true,
"packageManager": "yarn@4.16.0"
}