-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "c0d3r",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --ignore-unknown --write"
]
},
"scripts": {
"start": "yarn build && node dist/index.js",
"prettier:check": "prettier --check . --no-error-on-unmatched-pattern",
"prettier:fix": "prettier --write . --ignore-unknown --no-error-on-unmatched-pattern",
"lint:check": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"check": "yarn lint:check && yarn prettier:check",
"fix": "yarn lint:fix && yarn prettier:fix",
"clean": "rm -rf dist",
"build": "yarn clean && tsc",
"prepare": "husky install"
},
"dependencies": {
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-request": "^6.1.0",
"openai": "^4.24.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
}