-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 KB
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
54
55
56
57
58
{
"name": "foxxy",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon",
"build": "tsup",
"lint-disabled": "prettier --check . && cross-env TIMING=1 eslint src --ext .js,.ts --format=pretty",
"lint": "prettier --check .",
"format-disabled": "prettier --write . && cross-env TIMING=1 eslint src --ext .js,.ts --fix --format=pretty",
"format": "prettier --write .",
"watch": "tsup --watch",
"db:pull": "prisma db pull",
"db:gen": "prisma generate",
"db:watch": "prisma generate --watch",
"postinstall": "husky install"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/Fox-Coding-Community/foxxy.git"
},
"bugs": {
"url": "https://github.com/Fox-Coding-Community/foxxy"
},
"contributors": [
"Darky <usf.kh.kh@gmail.com>"
],
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-angular": "^17.3.0",
"@prisma/client": "^4.8.0",
"@types/node": "^18.11.17",
"cross-env": "^7.0.3",
"eslint-config-neon": "^0.1.40",
"eslint-formatter-pretty": "^4.1.0",
"husky": "^8.0.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"prisma": "^4.8.0",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@discordjs/builders": "^1.4.0",
"@discordjs/rest": "^1.5.0",
"@sapphire/decorators": "^5.0.0",
"@sapphire/discord.js-utilities": "^5.1.2",
"@sapphire/framework": "^3.1.4",
"discord-api-types": "0.33.5",
"discord.js": "^13.12.0",
"dotenv": "^16.0.3",
"tslib": "^2.4.1"
}
}