-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.91 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "devutils",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"capture-screenshots": "tsx scripts/capture-screenshots.ts",
"optimize-screenshots": "tsx scripts/optimize-screenshots.ts",
"test": "jest",
"security:scan": "trivy fs --security-checks vuln,secret,config .",
"security:scan-deps": "trivy fs --security-checks vuln package-lock.json pnpm-lock.yaml",
"security:scan-json": "trivy fs --security-checks vuln --format json . > trivy-report.json",
"security:scan-html": "trivy fs --security-checks vuln --format html . > trivy-report.html"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@types/csso": "^5.0.4",
"@uiw/react-textarea-code-editor": "^3.0.2",
"blueimp-md5": "^2.19.0",
"change-case": "^5.4.4",
"colord": "^2.9.3",
"cronstrue": "^2.53.0",
"cssbeautify": "^0.3.1",
"csso": "^5.0.5",
"diff": "^5.2.0",
"dompurify": "^3.3.0",
"he": "^1.2.0",
"html-minifier-terser": "^7.2.0",
"js-yaml": "^4.1.0",
"lucide-react": "^0.344.0",
"papaparse": "^5.4.1",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-joyride": "^2.8.2",
"react-markdown": "^9.0.3",
"react-router-dom": "^7.5.2",
"sql-formatter": "^15.4.10",
"terser": "^5.37.0",
"ulid": "^2.3.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.10",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.9.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/blueimp-md5": "^2.18.2",
"@types/diff": "^5.0.9",
"@types/dompurify": "^3.2.0",
"@types/he": "^1.2.3",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-joyride": "^2.0.5",
"@types/sharp": "^0.32.0",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react": "^4.3.1",
"capture-website": "^4.2.0",
"sharp": "^0.33.2",
"autoprefixer": "^10.4.18",
"babel-jest": "^29.7.0",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^6.3.5"
}
}