-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "auto-attendance",
"version": "1.0.0",
"description": "Bot absen otomatis dengan menggunakan puppeteer",
"scripts": {
"login": "node functions/login",
"logout": "node functions/logout",
"lint": "eslint .",
"lint:report": "eslint --output-file eslint_report.json --format json .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reacto11mecha/auto-attendance.git"
},
"keywords": [
"attendance",
"automation"
],
"author": "Ezra Khairan Permana",
"license": "MIT",
"bugs": {
"url": "https://github.com/reacto11mecha/auto-attendance/issues"
},
"homepage": "https://github.com/reacto11mecha/auto-attendance#readme",
"dependencies": {
"chalk": "^5.0.0",
"discord-webhook-node": "^1.1.8",
"dotenv": "^15.0.0",
"puppeteer": "^13.1.3"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}