-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "rave-discord-ttrpg",
"version": "0.0.1",
"description": "",
"main": "app.js",
"type": "module",
"scripts": {
"dev": "nodemon app.js",
"format": "npx prettier '**/*.{js,jsx,ts,tsx,md,json,yml}' --write || true",
"lint": "npm run format && npm run lint:js",
"lint:js": "npx eslint '**/*.{js,ts,jsx,tsx}' --fix || true",
"start": "node app.js"
},
"author": "Rae Van Epps <[email protected]>",
"license": "GPL-3.0-or-later",
"dependencies": {
"discord-interactions": "^3.2.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"node-fetch": "^3.2.3"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
},
"homepage": "https://github.com/ravewebdev/discord-ttrpg-bot/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/ravewebdev/discord-ttrpg-bot"
},
"bugs": {
"url": "https://github.com/ravewebdev/discord-ttrpg-bot/issues"
},
"funding": "https://github.com/sponsors/ravewebdev/"
}