-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "discord-bot-template",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"build": "npx prisma generate && npx swc ./src -d dist",
"start": "NODE_ENV=production node dist/index.js",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\" --ignore-path .gitignore",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test-tsc": "tsc --noEmit",
"postinstall": "npx prisma generate"
},
"dependencies": {
"@discordjs/builders": "^1.2.0",
"@prisma/client": "^4.7.0",
"discord.js": "^14.5.0",
"globby": "^13.1.2",
"pretty-ms": "^8.0.0",
"undici": "^5.10.0"
},
"devDependencies": {
"@casper124578/eslint-config": "^5.0.1",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.4",
"@swc/helpers": "^0.4.14",
"@types/glob": "^8.0.0",
"@types/node": "^18.7.23",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prisma": "^4.7.1",
"regenerator-runtime": "^0.13.11",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}