-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.89 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
58
59
{
"name": "seabot",
"version": "0.13.0",
"description": "a bot. in SEA.",
"main": "dist/seabot.js",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@azure/cosmos": "^3.15.1",
"better-sqlite3": "^12.2.0",
"canvas": "^3.1.2",
"date-fns": "^3.6.0",
"discord-api-types": "^0.37.17",
"discord.js": "^15.0.0-dev.1771286636-ccce987fa",
"dotenv": "8.2.0",
"express": "^4.22.2",
"express-rate-limit": "^8.5.2",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.7",
"underscore": "^1.13.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.13",
"@types/node": "^22.17.0",
"@types/node-cron": "^2.0.3",
"@types/node-fetch": "^2.5.8",
"@types/underscore": "^1.11.0",
"copy-webpack-plugin": "^14.0.0",
"nodemon": "^3.1.4",
"rimraf": "^6.1.3",
"ts-loader": "^9.4.2",
"typescript": "^5.1.6",
"webpack": "^5.105.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"clean": "rimraf ./dist/",
"build": "npm run clean && tsc",
"tsc": "tsc",
"install:dist": "cd ./dist/ && npm ci --omit=dev",
"seabot": "node dist/seabot.js",
"pack:dev": "npm run clean && webpack --config-name dev && npm run install:dist",
"pack": "npm run clean && webpack --config-name prod && npm run install:dist",
"container:production": "npm run clean && webpack --config-name prod",
"container:development": "npm run clean && webpack --config-name dev",
"start": "npm run pack:dev && npm run seabot",
"launch": "npm ci && npm start",
"dev": "nodemon -e ts,js,json --delay 2 --watch src --watch package.json --watch package-lock.json --watch tsconfig.json --watch dist\\seabotConfig.json --exec \"npm run pack:dev && node dist/seabot.js\""
},
"repository": {
"type": "git",
"url": "."
},
"author": "",
"license": "MIT"
}