-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.1 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
{
"private": true,
"scripts": {
"build": "tsc && resolve-tspaths",
"dev": "NODE_ENV=DEVELOPMENT ts-node-dev --respawn --transpile-only -r tsconfig-paths/register source/index.ts",
"lint": "eslint --ext .ts,.js .",
"prepare": "husky install",
"start": "NODE_ENV=PRODUCTION node build/index.js",
"typesafe-i18n": "typesafe-i18n"
},
"lint-staged": {
"**/*.(ts|js)": [
"bash -c 'pnpm tsc --noEmit'",
"pnpm lint"
]
},
"dependencies": {
"discord.js": "^14.6.0",
"discordx": "^11.4.0",
"dotenv": "^16.0.3",
"tslib": "^2.4.1",
"tslog": "^4.4.4",
"typedi": "^0.10.0",
"typesafe-i18n": "^5.16.3",
"zod": "^3.20.2"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-universe": "^11.2.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"resolve-tspaths": "^0.8.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"type-fest": "^3.2.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=15.14.0",
"pnpm": ">=7.12.2"
}
}