-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
48
49
50
51
52
{
"name": "dingir",
"author": "Brent Oates",
"repository": {
"type": "git",
"url": "https://github.com/BrentOates/dingir.git"
},
"version": "2.5.8",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist/src/",
"lint": "eslint . --ext .ts",
"dev": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"npm run copy-and-start\"",
"copy-and-start": "npm run postbuild && npm start",
"start": "node dist/src/index.js"
},
"dependencies": {
"@discordjs/rest": "^2.4.0",
"@napi-rs/canvas": "^0.1.58",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"luxon": "^3.5.0",
"node-schedule": "^2.1.1",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.5",
"sequelize-typescript": "^2.1.6",
"sqlite3": "^5.1.7",
"tslib": "^2.8.0",
"underscore": "^1.13.7"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/luxon": "^3.4.2",
"@types/node": "^22.8.1",
"@types/node-schedule": "^2.1.7",
"@types/underscore": "^1.13.0",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"rimraf": "^6.0.1",
"tsc-watch": "^6.2.0",
"typescript": "^5.6.3"
},
"overrides": {
"@mapbox/node-pre-gyp": {
"make-dir": "4.0.0"
}
}
}