-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.88 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
{
"name": "novapass",
"private": true,
"version": "1.2.3",
"type": "module",
"engines": {
"node": "22"
},
"overrides": {
"vite": "^5.0.0"
},
"scripts": {
"dev": "wxt",
"build": "wxt build --mv3",
"zip": "wxt zip --mv3",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test": "npm run test:unit && npm run test:e2e",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.2",
"@mui/material": "^6.4.2",
"@wxt-dev/i18n": "^0.2.3",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-transition-group": "^4.4.5",
"stylis": "^4.3.5",
"stylis-plugin-rtl": "^2.1.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@playwright/test": "^1.50.1",
"@types/chrome": "^0.0.304",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react-transition-group": "^4.4.12",
"@types/stylis": "^4.2.7",
"@vitest/coverage-v8": "^3.0.5",
"@wxt-dev/module-react": "^1.1.3",
"eslint": "^9.21.0",
"eslint-plugin-perfectionist": "^4.8.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"playwright": "^1.50.1",
"prettier": "^3.5.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vitest": "^3.0.5",
"wxt": "^0.19.26"
}
}