-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "algolia-analyzer",
"version": "0.0.11",
"author": "Emmanuel Krebs <e-krebs@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"dev": "parcel watch src/manifest.json --host localhost --target webext-dev --hmr-port 3000",
"build": "yarn clean && parcel build src/manifest.json --target webext-prod",
"zip": "cd dist/webext-prod && bestzip algolia-analyzer.zip *",
"clean": "rimraf .parcel-cache dist",
"lint": "eslint --ext js,ts,tsx src",
"test": "jest"
},
"targets": {
"webext-dev": {
"sourceMap": {
"inline": true,
"inlineSources": true
}
},
"webext-prod": {}
},
"dependencies": {
"@tanstack/react-query": "^5.24.1",
"eslint-plugin-jsdoc": "^48.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@algolia/client-search": "^4.22.1",
"@algolia/eslint-plugin-stl": "^1.0.0",
"@algolia/satellite": "1.0.0",
"@parcel/config-webextension": "^2.12.0",
"@parcel/validator-typescript": "^2.12.0",
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@types/chrome": "^0.0.262",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"algoliasearch": "^4.22.1",
"autoprefixer": "^10.4.17",
"bestzip": "^2.2.1",
"classnames": "^2.5.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"parcel": "^2.12.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"process": "^0.11.10",
"react-feather": "^2.0.10",
"react-json-view": "^1.21.3",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"alias": {
"components": "./src/components",
"content": "./src/content",
"models": "./src/models",
"pages": "./src/pages",
"utils": "./src/utils"
}
}