-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 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
45
46
47
{
"name": "uncle",
"version": "1.0.0",
"description": "A Discord bot for OSRS clan Legacy",
"main": "index.js",
"author": "Rorro",
"license": "ISC",
"dependencies": {
"@wise-old-man/utils": "^2.1.10",
"axios": "^0.27.2",
"better-sqlite3": "^7.6.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.3",
"discord-html-transcripts": "^3.1.4",
"discord-oauth2": "^2.10.1",
"discord.js": "^14.8.0",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"googleapis": "^100.0.0",
"imgur": "^2.3.0",
"knex": "^2.3.0",
"node-html-parser": "^6.1.12",
"sharp": "^0.33.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.14",
"@types/node": "^17.0.31",
"nodemon": "^2.0.16",
"ts-node": "^10.7.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.6.4"
},
"scripts": {
"build": "tsc",
"start": "NODE_ENV=production pm2 start dist/bot.js --watch --time",
"deploy": "npm run build && bash deploy.sh",
"dev": "ts-node-dev --poll --respawn --transpile-only --ignore-watch node_modules src/bot.ts",
"dev-win": "cross-env NODE_ENV=development nodemon src/bot.ts",
"knex": "cross-env NODE_ENV=development ./node_modules/.bin/knex --knexfile src/database/knexfile.ts"
}
}