-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.81 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.81 KB
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": "@infinitylist/plexus",
"version": "6.0.0",
"description": "RESTful API for the Infinity List services.",
"homepage": "https://github.com/InfinityBotList/plexus",
"bugs": "https://github.com/InfinityBotList/plexus/issues",
"repository": {
"type": "git",
"url": "https://github.com/InfinityBotList/plexus.git"
},
"license": "AGPL-3.0-only",
"author": "Pixelated <https://codemeapixel.dev>",
"scripts": {
"build": "tsc",
"dev": "cross-env NODE_ENV=development bun run --watch src/index.ts",
"start": "cross-env NODE_ENV=production bun run dist/index.js",
"nightly": "cross-env NODE_ENV=nightly bun run dist/index.js",
"prepare": "husky",
"generate-db-types": "bun run src/utils/db-typegen.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"dependencies": {
"@elysiajs/swagger": "^1.2.0",
"bcryptjs": "^2.4.3",
"chalk": "^5.4.1",
"crypto": "^1.0.1",
"debug": "^4.4.0",
"dedent": "^1.5.3",
"discord.js": "^14.16.3",
"dotenv": "^16.5.0",
"elysia": "^1.2.12",
"pg": "^8.13.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@types/pg": "^8.11.10",
"commitlint": "^19.6.1",
"cross-env": "^7.0.3",
"eslint": "^8.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.0.0",
"typescript": "^5.2.2"
}
}