-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.27 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
{
"name": "new-tab-identity",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "vite build --minify && web-ext build -s ./dist -a ./dist --overwrite-dest",
"lint": "tsc && eslint . --ext ts,tsx && npm run build && web-ext lint -s ./dist",
"test": "vitest run",
"start": "web-ext run --source-dir ./dist"
},
"dependencies": {
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@donovanglover/base16-tailwind": "npm:@jsr/donovanglover__base16-tailwind@^0.1.7",
"@testing-library/react": "^16.0.1",
"@types/firefox-webext-browser": "^120.0.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitest/coverage-istanbul": "^2.1.4",
"eslint-config-love": "^47.0.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"jsdom": "^25.0.1",
"tailwindcss": "^3.4.14",
"vite": "^5.4.10",
"vite-plugin-top-level-await": "^1.4.4",
"vitest": "^2.1.4",
"web-ext": "^8.3.0"
}
}