-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
58
59
{
"name": "tsb-serverchat",
"version": "2.3.0",
"author": "MT224244",
"repository": "https://github.com/TheSkyBlock/tsb-serverchat",
"main": "dist/index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "node .",
"compile": "webpack",
"dev": "yarn compile && yarn start",
"lint": "eslint .",
"test": "jest",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
".": [
"yarn lint"
]
},
"dependencies": {
"discord.js": "^12.5.1",
"encoding-japanese": "^1.0.30",
"jsonc-parser": "^3.0.0",
"rcon-client": "^4.2.3",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.4.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/encoding-japanese": "^1.0.17",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"semantic-release": "^17.4.3",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"webpack-node-externals": "^2.5.2"
}
}