-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
{
"name": "backend",
"version": "1.0.0",
"scripts": {
"dev": "yarn nodemon -L index.ts",
"test": "vitest",
"build": "NODE_OPTIONS='--max-old-space-size=8192' tsc --noEmit false",
"start": "node -r dotenv/config dist/backend/index.js",
"prisma:manual": "ts-node ./src/prisma/manual.ts"
},
"dependencies": {
"@prisma/client": "^6.2.1",
"@slack/bolt": "^3.22.0",
"@types/concat-stream": "^2.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^5.0.0",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.0",
"body-parser": "^1.19.0",
"concat-stream": "^2.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"decimal.js": "^10.4.3",
"dotenv": "^16.0.1",
"express": "^5.0.0",
"express-jwt": "^7.7.5",
"express-validator": "^6.14.2",
"google-auth-library": "^8.1.1",
"googleapis": "^118.0.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.1",
"prisma": "^6.2.1",
"shared": "1.0.0"
},
"devDependencies": {
"@types/express-jwt": "^6.0.4",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^20.0.0",
"@types/supertest": "^2.0.12",
"nodemon": "^2.0.16",
"supertest": "^6.2.4",
"ts-node": "^8.10.1",
"typescript": "^5.7.3",
"vitest": "^3.0.0"
},
"main": "index.ts",
"prisma": {
"schema": "./src/prisma/schema.prisma",
"seed": "ts-node ./src/prisma/seed.ts"
},
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}