-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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": "dispixel",
"version": "0.0.1",
"description": "Dispixel Discord Bot",
"main": "src/index.ts",
"author": "Thorin#0544",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/src/index.js",
"start:build": "npm run build && node build/src/index",
"build": "tsc -p .",
"build:live": "nodemon --watch src --exec ts-node src/index.ts",
"lint": "eslint --fix src/**/*.ts",
"lint:nofix": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chriscn/Dispixel.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/chriscn/Dispixel/issues"
},
"homepage": "https://github.com/chriscn/Dispixel#readme",
"dependencies": {
"axios": "^0.26.1",
"discord.js": "^11.6.4",
"dotenv": "^16.0.0",
"hypixel.ts": "^1.1.1"
},
"devDependencies": {
"@types/node": "^17.0.30",
"eslint": "^8.14.0",
"nodemon": "^2.0.16",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}