-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "bender",
"main": "./dist/main.js",
"author": "bender-devs",
"license": "GNU AGPLv3",
"private": true,
"repository": "https://github.com/bender-devs/Bender-v4",
"type": "module",
"dependencies": {
"chalk": "^5.2.0",
"cldr-annotations-derived-modern": "^43.0.0",
"cldr-annotations-modern": "^43.0.0",
"dotenv": "^16.0.1",
"express": "^4.19.2",
"geo-tz": "^7.0.2",
"gm": "^1.23.1",
"jimp": "^0.22.7",
"mongodb": "^4.7.0",
"redis": "^4.1.0",
"superagent": "^7.1.6",
"tweetnacl": "^1.0.3",
"unicode-emoji": "^2.4.0",
"ws": "^8.17.1",
"zlib-sync": "^0.1.7"
},
"scripts": {
"prestart": "npx tsc && (cmd /c \"copy src\\.env dist 2>nul\" || bash -c \"cp src/.env dist 2>/dev/null\")",
"start": "cd dist && node main.js"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.42",
"@types/superagent": "^4.1.15",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"typescript": "^5.4.5"
}
}