-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.92 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
{
"name": "backend",
"version": "0.1.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "bun src/index.ts",
"dev": "bun --watch src/index.ts",
"build": "rm -rf dist && tsc -b tsconfig.build.json",
"check-types": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"generate": "prisma generate",
"generate:sql": "prisma generate --sql",
"test": "dotenv -e .env.test -- vitest",
"migrate:dev": "prisma migrate dev",
"migrate:deploy": "prisma migrate deploy"
},
"exports": {
".": "./src/index.ts",
"./shared": "./src/shared.ts"
},
"prisma": {
"seed": "bun prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "7.3.0",
"@trpc/server": "11.8.1",
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"csv-parse": "^6.1.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.19",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.12",
"p-map": "^7.0.4",
"quickjs-emscripten": "^0.31.0",
"superjson": "^2.2.6",
"uuid": "^13.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^10.2.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.10",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^7.0.5",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^11.0.0",
"@vitest/ui": "4.0.18",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.2",
"globals": "^17.1.0",
"prisma": "^7.3.0",
"supertest": "^7.2.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.18"
}
}