-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 871 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
{
"name": "omnivore-hn",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "tsc --noEmit && eslint .",
"build": "node esbuild.config.js",
"build:prod": "npm run lint && node esbuild.config.js",
"dev": "node esbuild.config.dev.js",
"prettier:check": "prettier --check src",
"prettier:fix": "prettier --write src"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chrome": "^0.0.212",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"esbuild-plugin-copy": "^2.0.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"esbuild": "0.17.7",
"graphql-request": "^5.1.0"
},
"type": "module"
}