-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 958 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
{
"name": "alice",
"version": "0.0.9",
"description": "A whatsapp bot made to manage coding groups.",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Coding-in-community/alice"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"build": "tsc"
},
"author": "Bruno Gomes",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"dotenv": "^10.0.0",
"google-it": "^1.6.2",
"qrcode-terminal": "^0.12.0",
"whatsapp-web.js": "^1.16.6",
"wikijs": "^6.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "2.3.2",
"typescript": "^4.6.2"
}
}