forked from devpt-org/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.79 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
{
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start.dev": "nodemon",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"test": "vitest",
"test:once": "vitest run",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@types/lodash": "^4.14.191",
"axios": "^1.2.3",
"discord.js": "^13.12.0",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"lodash": "^4.17.21",
"mkdirp": "^2.1.3",
"node": "^19.4.0",
"node-fetch": "^2.6.6",
"nodemon": "^2.0.20",
"tslint": "^6.1.3",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-syntax-import-assertions": "^7.18.6",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/jest": "28.1.6",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"conventional-changelog-atom": "^2.0.8",
"cross-env": "7.0.3",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-cli": "28.1.3",
"prettier": "^2.7.1",
"ts-node": "~10.7.0",
"typescript": "~4.6.4",
"vitest": "^0.23.2",
"vitest-mock-extended": "^0.1.16"
}
}