-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "kalkulusta-bot",
"version": "2.0.0",
"main": "src/Main.ts",
"scripts": {
"dev": "nodemon src/Main.ts",
"build": "tsc",
"start": "node build/Main.js"
},
"dependencies": {
"@discordx/importer": "^1.2.3",
"@prisma/client": "^4.5.0",
"discord.js": "^14.13.0",
"discordx": "^11.7.6",
"dotenv": "^10.0.0",
"prisma": "^4.5.0",
"reflect-metadata": "^0.1.13",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix --cache --cache-location 'node_modules/.cache/.eslintcache'",
"*.{js,ts,md}": "pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
}
}