-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.94 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.94 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
92
93
94
95
96
{
"name": "sql-validator",
"version": "1.0.0",
"private": true,
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^27.5.2",
"@types/prismjs": "^1.26.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/sql.js": "^1.4.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"html-to-image": "^1.11.11",
"lucide-react": "^0.575.0",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-simple-code-editor": "^0.13.1",
"react-syntax-highlighter": "^16.1.0",
"sql-formatter": "^15.3.1",
"sql.js": "^1.10.3",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"web-vitals": "^2.1.4"
},
"scripts": {
"dev": "npm-run-all copy-sqljs start-vite",
"start": "npm-run-all copy-sqljs start-vite",
"build": "npm-run-all copy-sqljs build-vite",
"preview": "vite preview",
"copy-sqljs": "copyfiles -f node_modules/sql.js/dist/sql-wasm.wasm public/dist/sql.js/",
"start-vite": "vite",
"build-vite": "tsc -b && vite build",
"prepare": "git config core.hooksPath scripts/hooks",
"generate-lang": "tsx scripts/generate-language.ts",
"decrypt-oracle": "tsx scripts/decrypt-oracle.ts",
"encrypt-oracle": "tsx scripts/encrypt-oracle.ts",
"generate-erd": "tsx scripts/generate-erd.ts",
"generate-all": "tsx scripts/generate-language.ts --all --plain && tsx scripts/generate-erd.ts --all"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/jsdom": "^28.0.0",
"@types/node": "^22.18.10",
"@vitejs/plugin-react": "^5.0.4",
"autoprefixer": "^10.4.21",
"copyfiles": "^2.4.1",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"jsdom": "^28.1.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.58.2",
"postcss": "^8.5.6",
"sqlite-erd": "github:Edwinexd/sqlite-erd",
"tailwindcss": "^3.4.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.15.0",
"vite": "^7.1.10",
"vite-plugin-node-polyfills": "^0.24.0"
}
}