-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "lizzyapi",
"version": "1.0.0",
"description": "api",
"main": "index.ts",
"type": "module",
"scripts": {
"dev": "node --no-warnings --import=tsx --env-file=.env --watch src/index.ts",
"db": "prisma migrate deploy",
"start": "prisma migrate deploy & node --no-warnings --import=tsx --env-file=.env --watch src/index.ts"
},
"author": "Sebastian 'Moonded' Danielzik",
"license": "ISC",
"dependencies": {
"@prisma/client": "5.18.0",
"@types/swagger-ui-express": "^4.1.6",
"bitfield": "^4.2.0",
"cookie-parser": "^1.4.6",
"discord.js": "^14.16.2",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"js-sha512": "^0.9.0",
"jsonwebtoken": "^9.0.2",
"octokit": "^4.0.2",
"prisma": "^5.19.1",
"swagger-ui-express": "^5.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.5.5"
}
}