-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "ketsuna",
"version": "1.0.0",
"description": "Ketsuna Discord Bot",
"main": "dist/main.js",
"scripts": {
"dev": "nodemon",
"build": "next build && swc src --out-dir dist",
"migrate": "prisma generate && prisma db push",
"start": "cross-env NODE_ENV=production node dist/main.js",
"test": "swc src --out-dir dist && node --test"
},
"author": "garder500",
"license": "ISC",
"devDependencies": {
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.101",
"@types/centra": "^2.2.3",
"@types/i18n": "^0.13.10",
"@types/node": "*",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"cross-env": "^7.0.3",
"nodemon": "^3.0.2",
"prisma": "^5.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@libsql/client": "0.3.6",
"@mui/icons-material": "^5.15.2",
"@mui/material": "^5.15.2",
"@mui/material-nextjs": "^5.15.0",
"@prisma/adapter-libsql": "^5.7.1",
"@prisma/client": "5.8.1",
"@zeldafan0225/ai_horde": "^5.0.10",
"discord.js": "14.15.0-dev.1703981435-136c66c21",
"dotenv": "^16.3.1",
"fastify": "^4.25.1",
"i18n": "^0.15.1",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}