-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "gatekeeper",
"version": "0.0.1",
"description": "The discord bot managing the vault",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon -r dotenv/config -q dist/index.js\"",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node -r dotenv/config dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BENDERFACToRY/vault-bot.git"
},
"author": "Dexter",
"license": "ISC",
"bugs": {
"url": "https://github.com/BENDERFACToRY/vault-bot/issues"
},
"homepage": "https://github.com/BENDERFACToRY/vault-bot#readme",
"dependencies": {
"bufferutil": "^4.0.3",
"cross-env": "^7.0.3",
"discord.js": "^13.2.0",
"dot-env": "^0.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"node-fetch": "^2.6.5",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"utf-8-validate": "^5.0.5",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.4.0",
"@types/node-fetch": "^2.5.12",
"concurrently": "^6.2.0",
"nodemon": "^2.0.12"
}
}