-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "everything",
"version": "0.1.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "nodemon dist/index.js",
"start:production": "node dist/index.js",
"build": "esbuild src/index.ts --bundle --platform=node --format=esm --packages=external --outfile=dist/index.js",
"lint": "biome check src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "moonfloof <git@moonfloof.com>",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@tombofry/stdlib": "^0.11.1",
"better-sqlite3": "^11.7.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"express-handlebars": "^8.0.1",
"googleapis": "^144.0.0",
"helmet": "^8.0.0",
"javascript-time-ago": "^2.5.11",
"node-cron": "^3.0.3",
"nodemon": "^3.1.9",
"on-finished": "^2.4.1",
"phin": "^3.7.0",
"psn-api": "^2.10.1",
"sax": "^1.2.4",
"sharp": "^0.33.5",
"uuid": "^11.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.0",
"@types/node-cron": "^3.0.11",
"@types/sax": "^1.2.7",
"esbuild": "^0.24.2",
"typescript": "^5.7.2"
},
"nodemonConfig": {
"ext": "ts",
"ignore": ["*.json", "dist"],
"exec": "npm run build && node"
}
}