forked from somaniarushi/outliers-donuts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "donut-bot",
"version": "1.0.0",
"main": "./dist/src/main.js",
"license": "MIT",
"engines": {
"node": ">=16.6.0"
},
"scripts": {
"build": "rm -rf dist && yarn && tsc",
"start": "tsc && node ./dist/src/main.js",
"debug": "NODE_ENV=development nodemon ./src/main.ts",
"lint": "eslint . --ext .ts",
"test": "jest",
"tsc": "./node_modules/typescript/bin/tsc"
},
"dependencies": {
"@supabase/supabase-js": "^1.35.6",
"better-sqlite3": "^7.5.3",
"cron": "^2.0.0",
"discord.js": "^13.8.0",
"dotenv": "^16.0.1",
"node-gyp": "^9.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cron": "^2.0.0",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"jest": "^28.1.2",
"nodemon": "^2.0.16",
"ts-jest": "^28.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}