-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.16 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
{
"name": "praxly2",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test-browser": "tsx csv/selenium.test.ts",
"test-browser:headed": "tsx csv/selenium.test.ts --headed",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"lint-staged": "lint-staged",
"lint-staged:check": "lint-staged --allow-empty",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@lezer/generator": "^1.8.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^26.1.0",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/selenium-webdriver": "^4.35.5",
"@uiw/codemirror-theme-vscode": "^4.25.4",
"@uiw/react-codemirror": "^4.25.4",
"@vitejs/plugin-react": "^6.0.3",
"csv-parse": "^7.0.1",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"lucide-react": "^1.23.0",
"prettier": "^3.6.2",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-router": "^8.3.0",
"selenium-webdriver": "^4.41.0",
"tsx": "^4.20.6",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.3",
"vite-plugin-checker": "^0.14.4",
"vitest": "^4.0.18"
},
"dependencies": {
"@assistant-ui/react": "^0.14.16",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-python": "^6.2.1",
"@lezer/lr": "^1.4.2",
"autoprefixer": "^10.4.23",
"blockly": "^13.1.1",
"codemirror": "^6.0.1",
"fuse.js": "^7.4.2",
"keycloak-js": "^26.2.4",
"lz-string": "^1.5.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.1.18",
"zustand": "^5.0.14"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,css,html,yml,yaml}": [
"prettier --check"
]
},
"allowScripts": {
"esbuild@0.28.1": true
}
}