-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (57 loc) · 1.86 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
{
"name": "real",
"main": "dist/src/index.js",
"type": "module",
"scripts": {
"build": "tsc && cross-env NODE_ENV=development node .",
"start": "cross-env NODE_ENV=production node .",
"prepare": "husky install",
"translate": "ts-node-esm languages/interface.ts && pnpm prettier typings/language.d.ts --write"
},
"lint-staged": {
"**/*.{ts,json}": [
"pnpm prettier --write"
],
"languages/{en-US.json,interface.ts}": [
"pnpm translate",
"git add typings/language.d.ts",
"git commit --amend --no-edit"
]
},
"dependencies": {
"@prisma/client": "^4.8.0",
"@sentry/node": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"colorette": "^2.0.19",
"datadog-metrics": "^0.9.3",
"discord-api-types": "^0.28.0",
"discord.js": "^14.7.1",
"dotenv-extended": "^2.9.0",
"fastify": "^4.12.0",
"fastify-metrics": "^10.0.2",
"i18next": "^22.4.8",
"i18next-intervalplural-postprocessor": "^3.0.0",
"prom-client": "^14.1.1"
},
"devDependencies": {
"@sentry/types": "^6.19.7",
"@types/datadog-metrics": "^0.6.2",
"@types/got": "^9.6.12",
"@types/node": "18.6.3",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.2.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"prisma": "^4.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}