-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.77 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.77 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
{
"name": "sql-challenge",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@9.14.4",
"author": "talljack <yugang.cao12@gmail.com> (https://github.com/talljack)",
"funding": "https://github.com/sponsors/talljack",
"homepage": "https://github.com/learner-next/sql-challenge",
"bugs": "https://github.com/learner-next/sql-challenge/issues",
"engines": {
"node": ">=18.x"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"check": "tsc --incremental --noEmit && rm -f tsconfig.tsbuildinfo",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"format": "prettier --cache --write \"src/**/*.{ts,tsx,json,css,scss,md}\"",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@bytemd/plugin-gemoji": "^1.21.0",
"@bytemd/plugin-gfm": "^1.21.0",
"@bytemd/plugin-highlight": "^1.21.0",
"@bytemd/react": "^1.21.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@tanstack/react-router": "^1.109.2",
"alasql": "^4.5.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"github-markdown-css": "^5.8.1",
"highlight.js": "^11.10.0",
"jotai": "^2.10.3",
"lucide-react": "^0.468.0",
"monaco-editor": "^0.52.0",
"monaco-editor-component": "^0.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"sql-formatter": "^15.4.6",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"chalk": "^5.3.0",
"eslint": "^9.16.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"tailwindcss": "^3.4.16",
"talljack-eslint-config": "^0.2.6",
"typescript": "5.7.2",
"vite": "^6.0.3",
"vite-tsconfig-paths": "^5.1.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm run check && pnpx lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*": [
"eslint . --fix"
]
}
}