-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "uflaks-bot",
"version": "0.0.1",
"description": "discord bot uflaks",
"main": "dist/index.js",
"author": "Odd Martin Hansen",
"license": "ISC",
"homepage": "https://github.com/Kegulf/uflaks-bot#readme",
"bugs": {
"url": "https://github.com/Kegulf/uflaks-bot/issues"
},
"scripts": {
"start": "nodemon -e js,ts --watch src --exec \"npm run eslint && npm run build && node dist/index.js",
"test": "jest",
"eslint": "eslint ./src/**/*.ts",
"eslint:fix": "npm run eslint -- --fix",
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"prepack": "npm run build",
"all": "npm run eslint:fix && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kegulf/uflaks-bot.git"
},
"keywords": [
"discord",
"bot",
"uflaks"
],
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.36",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3",
"typescript-eslint": "0.0.1-alpha.0"
},
"dependencies": {
"dotenv": "^8.2.0",
"discord.js": "^12.5.1",
"discord.js-commando": "^0.12.2",
"node-fetch": "^2.6.1",
"svada": "^1.0.3"
}
}