forked from afaneca/myfin-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.57 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"type": "module",
"scripts": {
"start": "npx tsx src/server.ts",
"start:dev": "tsx src/scripts/startDev.ts",
"build": "tsc",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"db:deploy": "prisma migrate deploy",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:reset": "prisma migrate reset",
"db:migrate-from-db": "prisma db pull && prisma migrate dev",
"db:seed": "prisma db seed",
"test:unit": "vitest -c ./vitest.config.unit.ts",
"test:unit:run": "vitest run -c ./vitest.config.unit.ts",
"test:unit:ui": "vitest -c ./vitest.config.unit.ts --ui --coverage",
"_comment_test_integration": "Run all integration tests by default. Example usage: npm run test:integration (all tests), npm run test:integration user (runs tests matching 'user'), npm run test:integration 'user.integration.test.ts' (specific test file)",
"test:integration": "sh scripts/test-integration.sh"
},
"name": "myfin-api",
"version": "4.7.0",
"description": "NodeJS API for Myfin",
"main": "src/server.js",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/cors": "^2.8.13",
"@types/express": "^5.0.3",
"@types/i18next": "^13.0.0",
"@types/node": "^24.0.10",
"@types/swagger-ui-express": "^4.1.8",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"dotenv-cli": "11.0.0",
"globals": "^16.3.0",
"magicast": "0.3.5",
"nodemon": "^3.0.1",
"prisma": "^6.15.0",
"tsx": "^4.19.2",
"typescript": "^5.9.2",
"vitest": "^4.0.16",
"vitest-mock-extended": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aFaneca/myfin.git"
},
"author": "António Faneca",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/aFaneca/myfin/issues"
},
"homepage": "https://github.com/aFaneca/myfin#readme",
"dependencies": {
"@prisma/client": "^6.15.0",
"@types/nodemailer": "^7.0.1",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dayjs": "^1.10.6",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"fuzzball": "^2.2.0",
"helmet": "^8.0.0",
"i18next": "^25.4.2",
"i18next-http-middleware": "^3.7.0",
"joi": "^18.0.1",
"joi-to-swagger": "^6.2.0",
"mysql2": "^3.11.5",
"nodemailer": "8.0.7",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">20.19.0"
}
}