forked from Fenchurchh/SD2-SODBOT
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "sodbot_2",
"version": "1.5.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"postbuild": "npx copyfiles docker-compose.yml Dockerfile .dockerignore package.json assets/**/* ./dist",
"watch": "tsc --watch",
"inspect": "npm run build && node --inspect dist/main.js",
"dev": "npm run build && npm run start",
"start": "node dist/main.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "echo 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/express": "4.17.12",
"@types/mssql": "^6.0.8",
"@types/tedious": "^4.0.3",
"@types/winston": "2.4.4",
"axios": "^0.24.0",
"copyfiles": "^2.4.1",
"discord.js": "^14.14.1",
"dotenv": "16.0.1",
"express": "4.17.1",
"file-type": "^16.5.0",
"fs": "^0.0.1-security",
"ip-regex": "^2.1.0",
"jsonfile": "^6.1.0",
"levenshtein": "~1.0",
"lodash": "^4.17.21",
"nedb-promises": "^6.1.0",
"pg": "8.11.3",
"sd2-data": "^0.7.6",
"sd2-utilities": "0.1.28",
"typescript": "^5.5.0-dev.20240317",
"winston": "3.3.3",
"winston-azure-transport": "3.0.5"
},
"devDependencies": {
"@types/node": "^14.17.4",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "4.28.1",
"eslint": "^7.29.0",
"source-map-support": "^0.5.19"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
}
}