-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "readme-pagespeed-insights",
"version": "1.0.2",
"description": "GitHub README compatible PageSpeed Insights of your website",
"main": "dist/app.js",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"node-fetch": "^2.6.0",
"url": "^0.11.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"format": "prettier --write \"**/*.{js,ts}\"",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ankur Parihar",
"license": "ISC",
"engines": {
"node": "14.x"
}
}