-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "friendly-toolbox",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"lighthouse": "node scripts/lighthouse.mjs",
"prepare": "lefthook install"
},
"dependencies": {
"change-case": "^5.4.4",
"diff": "^8.0.2",
"firebase": "^12.7.0",
"jsonpath-plus": "^10.3.0",
"jsqr": "^1.4.0",
"lucide-react": "^0.562.0",
"marked": "^17.0.1",
"prism-react-renderer": "^2.4.1",
"qrcode": "^1.5.4",
"qs": "^6.14.1",
"ramda": "^0.32.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.12.0",
"sql-formatter": "^15.6.12",
"yaml": "^2.8.2",
"zustand": "^5.0.9"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@prerenderer/renderer-puppeteer": "^1.2.4",
"@prerenderer/rollup-plugin": "^0.3.12",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/diff": "^7.0.2",
"@types/marked": "^5.0.2",
"@types/node": "^25.0.5",
"@types/qrcode": "^1.5.6",
"@types/qs": "^6.14.0",
"@types/ramda": "^0.31.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^17.0.0",
"jsdom": "^27.4.0",
"lefthook": "^2.1.2",
"lighthouse": "^12.8.2",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"typescript": "~5.7.2",
"typescript-eslint": "^8.52.0",
"vite": "^6.0.0",
"vitest": "^4.0.16"
}
}