-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.98 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"$schema": "https://json.schemastore.org/package.json",
"name": "lantern",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "cross-env NODE_ENV=development tsx ./src/index.ts",
"build": "rimraf dist && tsc --project tsconfig.json && tsc-alias -p tsconfig.json && npm run copyfiles",
"start": "npm run build && cd dist && cross-env NODE_ENV=production node src/index.js",
"copyfiles": "copyfiles src/config.toml dist/ && copyfiles .env dist/ && copyfiles swagger.json dist/",
"register:commands": "npm run build && cross-env NODE_ENV=development tsx ./src/scripts/registerCommands.ts",
"unregister:commands": "npm run build && cross-env NODE_ENV=development tsx ./src/scripts/unregisterCommands.ts",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/discordplace/lantern/tree/main/apps/server"
},
"bugs": {
"url": "https://github.com/discordplace/lantern/issues"
},
"contributors": [
"chimpdev <[email protected]>",
"emirhan <[email protected]>"
],
"license": "GPL-3.0-only",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.12.0",
"@types/archiver": "^6.0.2",
"@types/async-lock": "^1.4.2",
"@types/compression": "^1.7.5",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/express-ws": "^3.0.5",
"@types/morgan": "^1.9.9",
"@types/ms": "^0.7.34",
"@types/node": "^22.9.0",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"eslint-plugin-security": "^3.0.1",
"globals": "^15.12.0",
"husky": "^9.1.6",
"rimraf": "^5.0.10",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@types/swagger-ui-express": "^4.1.7",
"archiver": "^7.0.1",
"async-lock": "^1.4.1",
"axios": "^1.7.7",
"body-parser": "^1.20.2",
"chalk": "^4.1.0",
"chrono-node": "^2.7.6",
"compression": "^1.7.4",
"cron": "^3.2.1",
"cronstrue": "^2.50.0",
"date-fns": "^4.1.0",
"dedent": "^1.5.3",
"discord-verify": "^1.2.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"express": "^5.0.0",
"express-file-routing": "^3.0.3",
"express-validator": "^7.2.0",
"express-ws": "^5.0.2",
"he": "^1.2.0",
"imgur-anonymous-uploader": "^1.1.6",
"moment": "^2.30.1",
"mongodb": "^6.10.0",
"mongoose": "^8.9.1",
"morgan": "^1.10.0",
"ms": "^2.1.3",
"swagger-ui-express": "^5.0.1",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}