-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.88 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.88 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "gmail-declutter",
"private": true,
"version": "2.2.0",
"type": "module",
"scripts": {
"dev": "cross-env VITE_USE_MOCK=true vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test:ui": "playwright test",
"test": "jest --passWithNoTests",
"lint:js": "eslint . --fix",
"lint:css": "stylelint **/*.css --fix",
"lint:html": "htmlhint **/*.html",
"lint:prettier": "prettier --write .",
"lint": "npm run lint:js && npm run lint:css && npm run lint:html && npm run lint:prettier",
"lint:dup": "jscpd ."
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"jest-environment-jsdom": "^29.7.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-loading-skeleton": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@playwright/test": "^1.52.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/chrome": "^0.0.315",
"@types/gapi.client.gmail-v1": "^0.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"htmlhint": "^1.6.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jscpd": "^4.0.5",
"prettier": "3.5.3",
"stylelint": "^16.18.0",
"stylelint-config-standard": "^38.0.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0"
}
}