-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.61 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
{
"name": "discord-bot",
"version": "2.8.2",
"description": "",
"main": "dist/index.js",
"repository": {
"url": "https://github.com/z164/discord-bot"
},
"scripts": {
"start": "NODE_ENV=development npx ts-node src/index.ts",
"start:dev": "NODE_ENV=development npx ts-node-dev src/index.ts",
"start:prod": "NODE_ENV=production node dist/index.js",
"test": "npx jest",
"test:cov": "npx jest --coverage",
"build": "npx tsc --build",
"prettier": "npx prettier -w src",
"eslint": "npx eslint ."
},
"author": "z164",
"license": "ISC",
"dependencies": {
"colors": "^1.4.0",
"discord.js": "^12.5.1",
"dota2": "^7.0.3",
"dotenv": "^8.2.0",
"long": "^4.0.0",
"moment": "^2.29.1",
"mongoose": "^5.13.9",
"mongoose-long": "^0.4.0",
"node-schedule": "^2.0.0",
"nodemailer": "^6.6.2",
"protobufjs": "^5.0.1",
"steam-resources": "github:seishun/node-steam-resources"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/long": "^4.0.1",
"@types/node-schedule": "^1.3.1",
"@types/nodemailer": "^6.4.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^7.0.1",
"prettier": "^2.2.1",
"ts-jest": "^27.0.3",
"ts-node-dev": "^1.1.6"
}
}