-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 892 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
38
39
{
"name": "NuggetV2",
"version": "1.0.0",
"description": "Discord bot for GatorNuggets",
"main": "main",
"scripts": {
"watch": "tsc -w",
"start": "ts-node src/app.ts",
"dev": "nodemon dist/app.js",
"test": "jest",
"build": "npx tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/nitinramadoss/nuggetv2bot"
},
"keywords": [
"nuggetv2bot"
],
"author": "NKR",
"license": "UNLICENSED",
"dependencies": {
"axios": "^0.21.1",
"discord.js": "^12.5.3",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.1",
"@types/ws": "^7.4.6",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"random-question": "^0.2.1",
"typescript": "^4.3.5"
}
}