-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "devmek",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/main.js",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --root=src",
"dev": "node --loader ts-node/esm/transpile-only src/main.ts",
"serve": "node build/main.js",
"start": "nodemon --exec node --loader ts-node/esm/transpile-only src/main.ts"
},
"dependencies": {
"@discordx/importer": "^1.1.10",
"@discordx/pagination": "^3.3.1",
"@discordx/utilities": "^5.1.0",
"@prisma/client": "^4.10.0",
"axios": "^0.26.1",
"discord-api-types": "^0.37.31",
"discord.js": "^14.6.0",
"discordx": "^11.4.0",
"dotenv": "^16.0.3",
"immutable": "^4.2.4",
"node-2fa": "^2.0.3",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0",
"vrchat": "^1.11.1"
},
"devDependencies": {
"@types/node": "^18.13.0",
"nodemon": "^2.0.20",
"prisma": "^4.10.0",
"ts-node": "^10.9.1",
"typescript": "beta"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"packageManager": "[email protected]",
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
}
}