-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.12 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "board-game-bot",
"version": "1.0.1",
"description": "",
"main": "src/DiscordBot.ts",
"license": "ISC",
"engines": {
"node": ">=16.11.0",
"npm": ">=8.0.0"
},
"engineStrict": true,
"scripts": {
"build": "tsc",
"coverage": "open ./coverage/lcov-report/index.html",
"dev": "nodemon",
"git:update": "git add -u",
"lint:all": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"lint:staged": "lint-staged",
"lint": "eslint . --quiet",
"precommit": "run-s lint:staged test git:update",
"prepare": "husky install",
"pretty:all": "pretty-quick",
"pretty:staged": "pretty-quick --staged",
"prettylint:all": "run-s pretty:all lint:all",
"start": "node build/DiscordBot.js",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/google-spreadsheet": "^3.1.5",
"@types/lodash": "^4.14.175",
"axios": "^0.22.0",
"discord-api-types": "^0.23.1",
"discord.js": "^13.2.0",
"discordx": "^6.1.2",
"dotenv": "^10.0.0",
"fast-xml-parser": "^3.20.3",
"google-spreadsheet": "^3.1.15",
"he": "^1.2.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.2.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^7.0.2",
"jest": "^27.2.4",
"lint-staged": "^11.2.0",
"nodemon": "^2.0.13",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"ts-jest": "^27.0.6"
}
}