-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.63 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
{
"name": "quote-bot",
"version": "1.0.0",
"description": "A discord bot for saving and displaying memorable quotes from you and your friends",
"main": "main.js",
"scripts": {
"test": "jasmine",
"test:db": "SET NODE_ENV=development && SET DATABASE_URL=<your-database-url> && SET ENCRYPTION_KEY=<your-test-key> && node ./spec/local-database-test.js",
"start": "NODE_ENV=production && node deploy-commands.js && node main.js",
"start:dev": "SET NODE_ENV=development && SET DATABASE_URL=<your-url-here> && SET TOKEN=<your-token-here> && SET CLIENT_ID=<your-client-id-here> && node deploy-commands.js && node main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlecM33/quote-bot.git"
},
"engines": {
"node": "<=20.11.1"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlecM33/quote-bot/issues"
},
"homepage": "https://github.com/AlecM33/quote-bot#readme",
"dependencies": {
"@discordjs/builders": "^1.0.0",
"@discordjs/rest": "^1.0.0",
"canvas": "^2.11.2",
"d3": "^7.8.3",
"d3-cloud": "^1.2.5",
"discord-api-types": "^0.36.2",
"discord.js": "^14.14.1",
"jsdom": "^21.1.1",
"pg": "^8.5.1",
"randomcolor": "^0.6.2",
"sharp": "^0.33.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-transform-object-assign": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-node": "^11.1.0",
"jasmine": "^4.2.1"
}
}