generated from michaeljolley/repo-template-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "discord-guys-bot",
"version": "1.0.39",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc && copyfiles -E -u 1 \"src/public/**/*\" dist",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "mocha -r ts-node/register **/*.test.ts --insect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichaelJolley/discord-guys-bot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/MichaelJolley/discord-guys-bot/issues"
},
"homepage": "https://github.com/MichaelJolley/discord-guys-bot#readme",
"dependencies": {
"discord.js": "^13.6.0",
"dotenv": "^10.0.0",
"express": "^4.17.3",
"faunadb": "^4.5.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"@types/sinon": "^10.0.11",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.6",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"mocha": "^9.2.1",
"prettier": "^2.5.1",
"sinon": "^11.1.2",
"ts-node": "^10.7.0",
"typescript": "^4.5.5"
}
}