forked from Nexus-Mods/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.52 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
{
"name": "nexus-bot-typescript",
"version": "3.5.0",
"description": "A Discord bot for Nexus Mods, written in TypeScript",
"main": "dist/app.js",
"scripts": {
"build": "npx tsc --build tsconfig.json && copyfiles -f ./src/config.json dist && yarn copy-assets",
"copy-assets": "copyfiles -f -a ./src/server/views/* dist/server/views && copyfiles -f -a ./src/server/public/css/* dist/server/public/css && copyfiles -f -a ./src/server/public/images/* dist/server/public/images",
"start": "node dist/app.js",
"dev": "yarn build && yarn start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Pickysaurus",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/heapdump": "^0.3.1",
"copyfiles": "^2.4.1",
"eslint": "^8.21.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@discordjs/rest": "^0.3.0",
"@nexusmods/nexus-api": "^1.1.5",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^8.5.8",
"@types/nconf": "^0.10.3",
"@types/node": "16",
"@types/pg": "^7.14.4",
"@types/request-promise-native": "^1.0.17",
"axios": "^1.1.2",
"cookie-parser": "^1.4.6",
"discord-api-types": "^0.26.1",
"discord.js": "^14.7.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.8",
"express": "^4.18.2",
"fuse.js": "^6.4.1",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"path": "^0.12.7",
"pg": "^8.3.2",
"rss-parser": "^3.9.0"
}
}