-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 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
60
61
62
{
"name": "oqixts",
"version": "1.0.0",
"description": "Discord BOT intended for FIT@FI server.",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"test": "jest",
"dev": "nodemon -L --config nodemon.json src/index.ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-check": "prettier --config .prettierrc 'src/**/*.ts' --check",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OqixDevs/OqixTS.git"
},
"keywords": [
"oqix",
"oqixts",
"oqixjs",
"oqixdevs",
"fit@fi"
],
"author": "OqixDevs",
"license": "MIT",
"bugs": {
"url": "https://github.com/OqixDevs/OqixTS/issues"
},
"homepage": "https://github.com/OqixDevs/OqixTS#readme",
"dependencies": {
"@discordjs/rest": "2.2.0",
"@prisma/client": "5.11.0",
"discord-api-types": "0.37.74",
"discord.js": "14.14.1",
"dotenv": "16.4.5",
"jest-mock-extended": "3.0.5"
},
"devDependencies": {
"@braintree/sanitize-url": "7.0.0",
"@types/cheerio": "0.22.35",
"@types/jest": "29.5.12",
"@types/node": "18.19.24",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"axios": "1.6.8",
"cheerio": "1.0.0-rc.12",
"eslint": "8.57.0",
"jest": "29.7.0",
"prettier": "3.2.5",
"prisma": "5.11.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.2"
},
"optionalDependencies": {
"nodemon": "3.1.0"
},
"prisma": {
"schema": "src/model/schema.prisma"
}
}