-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.5 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.5 KB
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
{
"name": "happier-path",
"private": true,
"version": "5.1.1",
"type": "module",
"scripts": {
"build-dev-chrome": "tsc -b && cross-env BROWSER=chrome vite build --mode development",
"build-dev-firefox": "tsc -b && cross-env BROWSER=firefox vite build --mode development",
"build-prod-chrome": "tsc -b && cross-env BROWSER=chrome vite build --mode production",
"build-prod-firefox": "tsc -b && cross-env BROWSER=firefox vite build --mode production",
"lint": "eslint .",
"addon-lint:firefox": "addons-linter ./dist",
"prettier-fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,html,json,md,yml}\"",
"prettier": "prettier --check \"src/**/*.{js,jsx,ts,tsx,css,html,json,md,yml}\""
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.2.0",
"@mui/material": "^7.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/node": "^24.0.13",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/webextension-polyfill": "^0.12.3",
"@vitejs/plugin-react": "^4.7.0",
"addons-linter": "^7.17.0",
"cross-env": "^7.0.3",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.38.0",
"vite": "^7.0.6"
}
}