-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "y",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "export NODE_ENV=development && tsx watch src/index.ts",
"build": "rm -rf dist && tsc -p tsconfig.prod.json && tsc-alias",
"deploy-commands": "tsx src/deploy-commands.ts",
"deploy-commands-dev": "export NODE_ENV=development && tsx src/deploy-commands.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparky-raccoon/epitome.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sparky-raccoon/epitome/issues"
},
"homepage": "https://github.com/sparky-raccoon/epitome#readme",
"dependencies": {
"@sentry/node": "^7.107.0",
"axios": "^0.27.2",
"discord.js": "^14.14.0",
"dotenv": "^16.0.0",
"firebase": "^10.8.0",
"node-cache": "^5.1.2",
"node-cron": "^3.0.3",
"rss-parser": "^3.12.0",
"slugify": "^1.6.6",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.6.2",
"tsc-alias": "^1.8.8",
"tsx": "^4.1.2",
"typescript": "5"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.+ts\\": "prettier --write"
}
}