-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.95 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.95 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
{
"name": "tools4dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run --config vitest.config.mjs",
"test:watch": "vitest --config vitest.config.mjs",
"test:e2e:install": "playwright install chromium",
"test:e2e:install:deps": "playwright install --with-deps chromium",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@faker-js/faker": "8.4.1",
"clsx": "^2.1.1",
"diff": "^7.0.0",
"dompurify": "^3.2.4",
"highlight.js": "^11.11.1",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.511.0",
"marked": "^15.0.7",
"next": "latest",
"next-themes": "^0.4.6",
"pdf-lib": "^1.17.1",
"pg": "^8.20.0",
"qrcode": "1.5.4",
"react": "latest",
"react-dom": "latest",
"sharp": "^0.34.5",
"sql-formatter": "^15.6.5",
"tailwind-merge": "^3.3.0",
"ulid": "^3.0.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@playwright/test": "^1.54.2",
"@types/diff": "^7.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.10",
"@types/pg": "^8.18.0",
"@types/qrcode": "1.5.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.20.1",
"eslint-config-next": "latest",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}