-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "nextjs-discord-bot",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"register-commands": "tsx ./scripts/register-commands"
},
"dependencies": {
"@t3-oss/env-nextjs": "^0.7.1",
"autoprefixer": "^10.4.16",
"discord-api-types": "^0.37.54",
"dotenv": "^16.3.1",
"ky": "^0.33.3",
"nanoid": "^4.0.2",
"next": "^14.0.2",
"postcss": "^8.4.30",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.3",
"tweetnacl": "^1.0.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@types/node": "^20.5.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.19",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.5.4",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"license": "MIT",
"description": "Discord bot template using Next.js that runs at the edge. Uses Discord interactions webhooks to receive commands.",
"main": "index.js",
"author": "Jeff Huang"
}