-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "merriam-webster-extension",
"version": "3.0.0",
"repository": "https://github.com/behnamazimi/merriam-webster-dictionary-extension.git",
"author": "Behnam Azimi <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build:chrome": "tsc && TARGET=chrome vite build",
"build:firefox": "tsc && TARGET=firefox vite build",
"lint": "eslint . --fix"
},
"dependencies": {
"@mantine/core": "^7.13.5",
"@mantine/form": "^7.13.5",
"@mantine/hooks": "^7.13.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/webextension-polyfill": "^0.10.7",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.12.0",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.12.0",
"postcss": "^8.4.47",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"rollup-plugin-typescript-paths": "^1.5.0",
"typescript": "^5.3.2",
"typescript-eslint": "^8.9.0",
"vite": "^5.4.10",
"vite-plugin-web-extension": "^4.2.0",
"webextension-polyfill": "^0.10.0"
}
}