This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
70 lines (70 loc) · 2.07 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
68
69
70
{
"name": "heptagram",
"version": "5.1.1",
"description": "The open-source multipurpose discord bot with the goal to be the single needed bot for any server.",
"main": "./prod/src/main.js",
"scripts": {
"prebuild": "rm -rf ./prod",
"build": "tsc",
"lint": "prettier --write --color './**/*.ts'",
"start": "node -r dotenv/config ./prod/index.js",
"dev": "nodemon --quiet --watch './**/*.ts' --exec 'ts-node' src/index.ts",
"test": "ts-mocha -u tdd --file test/root.ts test/**/*.spec.ts --recursive --exit",
"prepare": "husky install"
},
"repository": "git+https://github.com/Heptagram-Bot/Heptagram.git",
"author": "Jasper Mayone",
"license": "EPL-2.0",
"bugs": {
"url": "https://github.com/Heptagram-Bot/Heptagram/issues"
},
"homepage": "https://github.com/Heptagram-Bot/Heptagram#readme",
"dependencies": {
"@pm2/io": "^5.0.0",
"@sapphire/time-utilities": "^1.7.6",
"@types/chai": "^4.3.1",
"@types/mocha": "^10.0.0",
"axios": "^1.0.0",
"chai": "^4.3.6",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dayjs": "^1.11.3",
"discord.js": "^14.0.2",
"enmap": "^5.9.0",
"express": "^4.18.1",
"moment": "^2.29.4",
"mongoose": "^6.4.4",
"typescript": "^4.7.4",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/cors": "2.8.12",
"@types/express": "4.17.14",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"alex": "11.0.0",
"all-contributors-cli": "6.24.0",
"dotenv": "16.0.3",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.6.2",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"mocha": "^10.0.0",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"prettier-eslint": "15.0.1",
"ts-mocha": "^10.0.0",
"ts-node": "10.9.1"
},
"engines": {
"node": ">=16.10.0",
"npm": "^9.0.0"
},
"lint-staged": {
"**/*": "prettier --write --color --ignore-unknown"
}
}