-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 935 Bytes
/
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
{
"name": "discord-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"start": "node build/index.js",
"start:dev": "nodemon --watch 'app/**' --ext 'ts,json' --ignore 'app/**/*.spec.ts' --exec 'ts-node index.ts'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"dotenv": "^16.0.3",
"gts": "^3.1.1",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.7.0"
},
"dependencies": {
"axios": "^1.3.3",
"discord.js": "^14.7.1"
}
}