-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.16 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
50
51
52
53
54
55
56
57
58
59
{
"name": "briefkasten-scraper",
"version": "0.3.0",
"description": "Briefkasten missing image job",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node ./index.js"
},
"keywords": [
"playwright",
"bookmarks",
"screenshots"
],
"author": "ndom91 <[email protected]>",
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^1.35.3",
"pg": "^8.7.3",
"playwright": "^1.22.2",
"sharp": "^0.30.7"
},
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"lint-staged": "^13.0.0",
"simple-git-hooks": "^2.8.0"
},
"eslintConfig": {
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020
},
"plugins": [
"prettier"
],
"extends": [
"plugin:prettier/recommended"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": true,
"arrowSpacing": true
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
}
}