-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
44 lines (44 loc) · 1.4 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
{
"name": "nexus-bot-typescript",
"version": "3.8.1",
"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",
"copyfiles": "^2.4.1",
"eslint": "^8.47.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@nexusmods/nexus-api": "^1.1.5",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/nconf": "^0.10.3",
"@types/node": "20.5.1",
"@types/pg": "^8.10.2",
"axios": "^1.6.0",
"cookie-parser": "^1.4.6",
"discord.js": "latest",
"dotenv": "^16.3.1",
"ejs": "^3.1.10",
"express": "^4.20.0",
"fuse.js": "^6.6.2",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"jsonwebtoken": "^9.0.1",
"path": "^0.12.7",
"pg": "^8.11.3",
"rss-parser": "^3.13.0",
"tall": "^8.0.0"
}
}