-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 KB
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": "zigui_study_group_bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js,.ts src --color",
"format": "prettier --write src/**/*.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node -r tsconfig-paths/register --files src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.10",
"dotenv": "^10.0.0",
"mongoose": "^5.12.14",
"ts-node": "^10.0.0",
"winston": "^3.3.3",
"ws": "^7.5.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.29",
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.23",
"@types/mongoose": "^5.11.97",
"@types/node": "^15.12.2",
"@types/ws": "^7.4.5",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.4",
"typescript": "^4.3.4"
}
}