-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "@doniwirawan/WebSpeedCheckOnTerminal",
"version": "1.0.0",
"description": "test your website performance from terminal",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"lint": "eslint . --fix",
"dev": "nodemon src/server"
},
"git-repository": "https://github.com/doniwirawan/WebSpeedCheckOnTerminal",
"keywords": [
"web performance",
"lighthouse"
],
"author": "doniwirawan",
"type": "module",
"license": "ISC",
"dependencies": {
"chalk": "^5.2.0",
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"figlet": "^1.5.2",
"lighthouse": "^9.6.8",
"mongoose": "^6.8.4",
"puppeteer": "^19.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0"
}
}