-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.13 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": "reciple-app",
"private": true,
"type": "module",
"scripts": {
"build": "npx rimraf ./modules && npx tsc",
"start": "npx reciple",
"test": "npm run build && npm run start -- --config reciple.test.yml",
"dev": "npx nodemon --watch src --ext ts,mts,cts --exec \"npm run test\" --signal SIGHUP",
"db:generate": "npx prisma format && npx prisma generate",
"db:push": "npx prisma format && npx prisma db push",
"watch": "npx tsc --watch --noEmit",
"sharder": "node --experimental-import-meta-resolve ./sharder"
},
"dependencies": {
"@falloutstudios/djs-pagination": "^2.0.2",
"@prisma/client": "^4.15.0",
"bedrock-protocol": "^3.29.0",
"discord.js": "^14.11.0",
"fallout-utility": "^2.5.1",
"minecraft-protocol": "^1.42.0",
"ms": "^2.1.3",
"reciple": "^7.7.4",
"reciple-anticrash": "^1.0.0",
"reciple-interaction-events": "^1.0.1"
},
"devDependencies": {
"@types/ms": "^0.7.31",
"@types/node": "^18.15.3",
"discord-hybrid-sharding": "^2.1.3",
"nodemon": "^2.0.22",
"prisma": "^4.15.0",
"rimraf": "^4.4.1",
"typescript": "^5.0.2"
}
}