-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 834 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 834 Bytes
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
{
"name": "french-tracker",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/src/main.js",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --src src",
"dev": "ts-node-esm src/main.ts",
"start": "node build/src/main.js",
"watch": "nodemon --exec ts-node-esm src/main.ts"
},
"dependencies": {
"@discordx/importer": "^1.1.10",
"axios": "^1.4.0",
"discord.js": "^14.7.1",
"discordx": "^11.7.0",
"typeorm": "^0.3.16"
},
"devDependencies": {
"@types/node": "^18.13.0",
"better-sqlite3": "^8.4.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "4.9.5"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}