This repository has been archived by the owner on Dec 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.52 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
{
"name": "discord-mdn-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon -r dotenv/config -x ts-node --files ./src/index.ts",
"start": "node build/index.js",
"build": "yarn test:ci && tsc",
"lint": "eslint src && tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"lint:fix": "eslint --fix src && prettier --write src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^5.19.2",
"@types/dom-parser": "^0.1.0",
"@types/mongoose": "^5.7.32",
"@types/node": "^14.0.23",
"@types/node-fetch": "^2.5.7",
"compare-versions": "^3.6.0",
"date-fns": "^2.15.0",
"discord.js": "^12.2.0",
"dom-parser": "^0.1.6",
"html-entities": "^1.3.1",
"mdn-browser-compat-data": "^1.0.31",
"mongoose": "^5.9.24",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.0",
"ts-node": "^8.10.2",
"typescript": "^4.0.0-dev.20200720"
},
"devDependencies": {
"@sentry/types": "^5.19.0",
"@types/jest": "^26.0.5",
"dotenv": "^8.2.0",
"eslint": "^7.4.0",
"eslint-config-galex": "^0.7.15",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": "prettier --write",
"*.js": "eslint --fix"
}
}