-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "luaobfuscator-bot",
"main": "dist/index.js",
"dependencies": {
"cache-manager": "^5.2.3",
"chart.js-image": "^6.1.3",
"cors": "^2.8.5",
"discord.js": "^14.15.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"http-status": "^1.6.2",
"mariadb": "^3.4.0",
"url-status-code": "^2.0.0"
},
"scripts": {
"build": "rimraf dist && npx tsc && esbuild dist/index.js --platform=node --outdir=./dist --allow-overwrite --minify",
"prestart": "npm run build",
"start": "node dist/index.js prod",
"preserve": "npm run build",
"serve": "concurrently \"npx tsc -w\" \"nodemon dist/index.js dev\"",
"start_daki": "node ./dist/index.js"
},
"devDependencies": {
"@types/cache-manager": "^4.0.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.2",
"concurrently": "^8.2.0",
"esbuild": "^0.18.13",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
}
}