-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
67 lines (67 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
59
60
61
62
63
64
65
66
67
{
"name": "buttbot-discord",
"version": "1.6.1",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "node dist",
"dev": "nodemon -e ts -x ts-node src/index.ts",
"debug": "nodemon -e ts -x ts-node --inspect src/index.ts",
"build": "rimraf dist && tsc",
"test": "yarn run lint",
"lint": "eslint \"src/**/*.{js,ts}\" --ignore-path .gitignore",
"prettier": "prettier --write \"src/**/*.{js,ts}\""
},
"author": "sct",
"license": "MIT",
"devDependencies": {
"@types/cors": "2.8.10",
"@types/nedb": "1.8.11",
"@types/pluralize": "0.0.29",
"@types/valid-url": "1.0.3",
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"babel-eslint": "10.1.0",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"husky": "4.2.5",
"lint-staged": "11.0.0",
"nodemon": "2.0.7",
"prettier": "2.3.1",
"ts-node": "10.0.0",
"typescript": "4.3.4"
},
"dependencies": {
"axios": "^0.21.1",
"discord.js": "discordjs/discord.js",
"dotenv": "^9.0.2",
"fastify": "^3.18.0",
"fastify-cors": "^6.0.1",
"hyphenation.en-us": "^0.2.1",
"hypher": "^0.2.5",
"nedb": "^1.8.0",
"pluralize": "^8.0.0",
"valid-url": "^1.0.9",
"winston": "^3.3.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,js}": [
"prettier --write",
"eslint"
],
"**/*.{json,md}": [
"prettier --write"
]
}
}