-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "@owlebot/discord-admin",
"version": "0.1.0",
"description": "Owlebot admin discord bot.",
"author": "Khaaz <[email protected]>, Xerstom <[email protected]>",
"link": "https://github.com/owlebot/discord-admin",
"main": "./src/index.js",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20.9.0"
},
"private": true,
"dependencies": {
"body-parser": "^1.20.3",
"express": "^4.20.0",
"slash-create": "^5.11.0"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.0",
"@owlebot/eslint-config": "^1.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.54.0"
},
"scripts": {
"lint": "eslint src/**/*.js",
"test": "yarn run lint",
"secret:pull": "infisical export --path=\"discord-admin\" --env=prod > .env",
"start": "node -r dotenv/config src/index.js",
"start:prod": "node src/index.js",
"start:watch": "node --watch -r dotenv/config src/index.js",
"start:debug": "node --inspect -r dotenv/config src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/owlebot/discord-admin.git"
},
"bugs": {
"url": "https://github.com/owlebot/discord-admin/issues"
},
"homepage": "https://github.com/owlebot/discord-admin#readme",
"keywords": []
}