This repository has been archived by the owner on Jul 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
54
55
56
57
58
59
{
"name": "tickets",
"license": "MIT",
"author": "Ta1al",
"main": "build",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"docker": "npm run docker:build && npm run docker:up",
"docker:build": "docker-compose --project-directory . build",
"docker:down": "docker-compose --project-directory . down",
"docker:logs": "docker-compose --project-directory . logs --tail=500 -f",
"docker:start": "npm run docker:up",
"docker:stop": "npm run docker:down",
"docker:up": "docker-compose --project-directory . up -d",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node .",
"test": "jest"
},
"dependencies": {
"@sapphire/type": "2.4.4",
"@typegoose/typegoose": "11.3.0",
"dedent": "0.7.0",
"discord.js": "14.15.3",
"dotenv": "16.1.4",
"mongoose": "7.3.4",
"winston": "3.10.0",
"winston-daily-rotate-file": "4.7.1"
},
"devDependencies": {
"@tsconfig/node18-strictest": "1.0.0",
"@types/dedent": "0.7.2",
"@types/jest": "29.5.12",
"@types/node": "18.19.41",
"eslint": "9.7.0",
"eslint-config-promise": "github:promise/eslint-config",
"jest": "29.7.0",
"ts-jest": "29.2.3",
"typescript": "5.5.3"
},
"optionalDependencies": {
"bufferutil": "4.0.8",
"erlpack": "github:discord/erlpack",
"utf-8-validate": "6.0.4",
"zlib-sync": "0.1.9"
},
"eslintConfig": {
"extends": "promise"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/"
]
}
}