This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.09 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
63
64
{
"name": "djs-template",
"version": "1.0.0",
"description": "An objectively correct minimal discord.js template.",
"main": "dist",
"type": "module",
"scripts": {
"test": "npm run lint && npm run test:typescript",
"test:typescript": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"dev": "tsx watch src/index.ts",
"build": "rm -rf ./dist/ && tsc",
"start": "cross-env NODE_ENV=production node --enable-source-maps ."
},
"imports": {
"#api": "./dist/api/index.js",
"#lib": "./dist/lib/index.js",
"#env": "./dist/env/index.js",
"#handlers": "./dist/lib/handlers/index.js",
"#modules": "./dist/lib/modules/index.js",
"#types": "./dist/types/index.js",
"#util": "./dist/util/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/night-lake/djs-template.git"
},
"author": "Amelia Katherine",
"license": "MIT",
"bugs": {
"url": "https://github.com/night-lake/djs-template/issues"
},
"homepage": "https://github.com/night-lake/djs-template#readme",
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "^8.2.0",
"@prisma/client": "^4.8.0",
"bufferutil": "^4.0.7",
"cross-env": "^7.0.3",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"erlpack": "github:discord/erlpack",
"fast-jwt": "^2.0.2",
"fastify": "^4.10.2",
"i18next": "^22.4.6",
"i18next-fs-backend": "^2.1.1",
"utf-8-validate": "^5.0.10",
"yoctocolors": "^1.0.0",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/i18next-fs-backend": "^1.1.2",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prisma": "^4.8.0",
"tsx": "^3.12.1",
"typescript": "^4.9.4"
}
}