-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.6 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 4.6 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "fintrack-api",
"version": "0.1.0",
"description": "Fintrack REST API.",
"main": "server.js",
"type": "module",
"scripts": {
"dev": "concurrently \"pnpm exec tsc -w\" \"nodemon\"",
"build": "rimraf dist && pnpm exec tsc && node --input-type=commonjs -e \"require('fs').cpSync('src/docs/definitions','dist/docs/definitions',{recursive:true})\"",
"start": "node dist/server.js",
"start:prod": "node_modules/.bin/prisma migrate deploy --schema prisma/schema.prisma && node dist/server.js",
"prod": "dotenv -e .env.production.local -- concurrently \"pnpm exec tsc -w\" \"nodemon dist/server.js\"",
"test:unit": "dotenv -e .env.test -- node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testPathPattern=test/unit",
"test:unit:dx": "dotenv -o -e .env.test.docker -- node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testPathPattern=test/unit",
"test:integration": "dotenv -e .env.test -- node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testPathPattern=test/integration",
"test:integration:dx": "dotenv -o -e .env.test.docker -- node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testPathPattern=test/integration",
"test:light": "pnpm run test:unit && pnpm run test:integration",
"test:light:dx": "pnpm run test:unit:dx && pnpm run test:integration:dx",
"test:stress": "dotenv -e .env.test -- node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testPathPattern=test/stress",
"test:stress:dx": "dotenv -o -e .env.test.docker -- node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testPathPattern=test/stress",
"test:e2e": "dotenv -e .env.test -- node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testPathPattern=test/e2e",
"test:e2e:dx": "dotenv -o -e .env.test.docker -- node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testPathPattern=test/e2e",
"test": "dotenv -e .env.test -- node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand",
"test:dx": "dotenv -o -e .env.test.docker -- node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand",
"test:watch": "dotenv -e .env.test -- jest --watch",
"test:watch:dx": "dotenv -o -e .env.test.docker -- jest --watch",
"check-types": "tsc --noEmit",
"predev": "pnpm run build",
"prisma": "prisma",
"prisma:generate": "prisma generate",
"prisma:migrate:dev": "pnpm run prisma -- migrate dev",
"prisma:migrate:deploy": "pnpm run prisma -- migrate deploy",
"prisma:migrate:deploy:test:local": "dotenv -e .env.test -- pnpm run prisma:migrate:deploy",
"prisma:migrate:deploy:test:dx": "dotenv -o -e .env.test.docker -- pnpm run prisma:migrate:deploy",
"prisma:studio": "pnpm run prisma -- studio --hostname 0.0.0.0",
"prisma:seed": "tsx src/prisma/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BODMAT/FinTrack.git"
},
"keywords": [
"typescript",
"nodejs",
"express",
"prisma",
"finance",
"dashboard"
],
"files": [
"dist",
"prisma"
],
"author": "Makar Dzhehur",
"license": "MIT",
"bugs": {
"url": "https://github.com/BODMAT/FinTrack/issues"
},
"homepage": "https://github.com/BODMAT/FinTrack#readme",
"dependencies": {
"@fintrack/types": "workspace:*",
"@prisma/client": "^6.19.3",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csrf-csrf": "^4.0.3",
"dotenv": "^17.4.2",
"express": "^4.19.2",
"express-rate-limit": "^8.5.1",
"google-auth-library": "^10.6.2",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^8.0.5",
"openai": "^6.38.0",
"prisma": "^7.8.0",
"stripe": "^22.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "4.19.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.3.0",
"@types/nodemailer": "^8.0.0",
"@types/supertest": "^7.2.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"concurrently": "^9.2.1",
"dotenv-cli": "^11.0.0",
"jest": "^29.7.0",
"nock": "^14.0.11",
"nodemon": "^3.1.10",
"rimraf": "^6.0.1",
"supertest": "^7.2.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.22.2",
"typescript": "^6.0.3"
}
}