-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "vscraper",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"build:extension": "web-ext build --source-dir ./extension"
},
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@hookform/resolvers": "3.3.2",
"@mui/icons-material": "5.14.0",
"@mui/joy": "5.0.0-alpha.87",
"js-sha1": "0.6.0",
"next": "14.0.3",
"next-seo": "6.4.0",
"platform-detect": "3.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.48.2",
"zod": "3.22.4"
},
"devDependencies": {
"@types/chrome": "0.0.253",
"@types/grecaptcha": "3.0.7",
"@types/node": "20.10.2",
"@types/react": "18.2.41",
"@types/react-dom": "18.2.17",
"eslint": "8.55.0",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"typescript": "5.1.6",
"web-ext": "7.8.0"
},
"volta": {
"node": "18.20.2"
},
"webExt": {
"sourceDir": "./extension",
"ignoreFiles": [
"_metadata",
"package.json"
]
},
"workspaces": [
"extension",
"cli"
]
}