-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.27 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
{
"name": "SquadJS",
"version": "1.0.19",
"main": "src/index.ts",
"repository": "git@github.com:iamalone98/SquadJS.git",
"author": "I-Am Alone <iamalone9828@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"start:dev": "nodemon src/index.ts",
"start:prod": "yarn build && node lib/index.js",
"lint:check": "tsc --noEmit && eslint --ext .ts src/ && prettier src/ --check --ignore-unknown",
"lint:format": "eslint --fix --ext .ts src/ && prettier src/ --write --ignore-unknown",
"build": "rollup -c rollup.config.js && ts-node src/buildMaps.ts",
"prepare": "husky install"
},
"dependencies": {
"chalk": "^5.3.0",
"date-fns": "^2.30.0",
"discord.js": "^14.16.3",
"squad-logs": "^1.0.23",
"squad-rcon": "^1.1.8"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}