-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 KB
/
package.json
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
{
"name": "lovat-server",
"version": "0.1.0",
"prisma": {
"seed": "node dist/seed.js"
},
"description": "",
"scripts": {
"dev": "ts-node-dev --respawn src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "tsc",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.12.1",
"@prisma/extension-accelerate": "^1.0.0",
"@types/jsonwebtoken": "^9.0.5",
"axios": "^1.6.2",
"crypto-js": "^4.2.0",
"csv-stringify": "^6.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"flatted": "^3.3.1",
"jose": "^5.1.1",
"resend": "^2.0.0",
"simple-statistics": "^7.8.3",
"zod": "^3.22.4",
"zod-validation-error": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/crypto-js": "^4.2.1",
"@types/express": "^4.17.21",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.8.0",
"eslint-plugin-unused-imports": "^4.0.1",
"globals": "^15.8.0",
"prisma": "^5.6.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.0.0"
}
}