-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
46
47
48
{
"name": "roark-privacy-analyser",
"version": "0.1.4",
"type": "module",
"scripts": {
"node": "node --env-file .env script.js",
"lint": "eslint . --ext .js,.ts",
"test": "vitest",
"test-pp": "vitest puppeteer",
"test-pw": "vitest playwright",
"test-domains": "vitest domains"
},
"dependencies": {
"dotenv": "^16.4.5",
"parse-domain": "7.0.1",
"playwright": "1.38.0",
"prettier": "3.0.3",
"puppeteer": "21.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"eslint": "8.51.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "46.9.0",
"typescript": "5.2.2",
"vitest": "1.4.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"singleAttributePerLine": false,
"bracketSameLine": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 80
}
}