-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
50
51
52
53
{
"name": "button-shy-play-bot",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint \"src/**/*.ts\"",
"prettier": "prettier --write \"src/**/*.ts\"",
"start": "cross-env NODE_ENV=development tsc-watch --preserveWatchOutput --onSuccess \"node ./dist/main.js\"",
"start:dev": "cross-env NODE_ENV=development tsc-watch --preserveWatchOutput --onSuccess \"node ./dist/main.js\"",
"start:prod": "cross-env NODE_ENV=production node ./dist/main.js"
},
"imports": {
"#game-data/*": "./dist/game-data/*.json",
"#lib/*": "./dist/lib/*.js"
},
"dependencies": {
"@discordjs/builders": "^0.16.0",
"@discordjs/collection": "^0.8.0",
"@prisma/client": "^4.1.0",
"@sapphire/decorators": "^4.3.8",
"@sapphire/discord-utilities": "^2.11.5",
"@sapphire/discord.js-utilities": "^4.11.3",
"@sapphire/framework": "^2.5.1",
"@sapphire/plugin-editable-commands": "^1.2.2",
"@sapphire/plugin-logger": "^2.2.3",
"@sapphire/plugin-subcommands": "^2.2.2",
"@sapphire/time-utilities": "^1.7.5",
"@sapphire/utilities": "^3.7.0",
"common-tags": "^1.8.2",
"cross-env": "^7.0.3",
"discord.js": "^13.9.1",
"dotenv": "^16.0.1",
"prisma": "^4.1.0"
},
"devDependencies": {
"@sapphire/eslint-config": "^4.3.7",
"@sapphire/prettier-config": "^1.4.3",
"@sapphire/ts-config": "^3.3.4",
"@types/common-tags": "^1.8.1",
"@types/node": "^18.6.1",
"eslint": "^8.20.0",
"prettier": "^2.7.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4"
},
"eslintConfig": {
"extends": "@sapphire"
},
"prettier": "@sapphire/prettier-config",
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}