-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.29 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
{
"name": "syntax-analyzer",
"private": true,
"version": "1.0.0",
"type": "module",
"packageManager": "pnpm@10.16.0",
"engines": {
"node": ">=22.22.0"
},
"author": "Romantech",
"license": "MIT",
"description": "Visual tool for English syntax analysis",
"keywords": [
"syntax",
"analysis",
"English",
"OpenAI",
"ChatGPT"
],
"repository": {
"type": "git",
"url": "git@github.com:romantech/syntax-analyzer.git"
},
"bugs": {
"url": "https://github.com/romantech/syntax-analyzer/issues"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": "biome check --write"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"@chakra-ui/react": "^2.10.10",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fingerprintjs/fingerprintjs": "3.4.2",
"@formkit/auto-animate": "^0.8.4",
"@hookform/resolvers": "^3.10.0",
"@lottiefiles/dotlottie-react": "^0.18.10",
"@tanstack/react-query": "^5.102.7",
"@tsparticles/engine": "^3.9.1",
"@tsparticles/preset-links": "^3.2.0",
"@tsparticles/react": "^3.0.0",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"axios": "^1.20.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.18.2",
"jotai": "^2.20.3",
"nanoid": "^5.1.16",
"qs": "^6.15.3",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.86.0",
"react-icons": "^5.7.0",
"react-router": "^8.3.0",
"sass": "^1.103.1",
"yup": "^1.7.1"
},
"devDependencies": {
"@biomejs/biome": "^2.5.10",
"@hookform/devtools": "^4.4.0",
"@tanstack/react-query-devtools": "^5.102.7",
"@types/node": "^25.9.5",
"@types/qs": "^6.15.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitejs/plugin-react": "^5.2.0",
"husky": "^9.1.7",
"jotai-babel": "^0.1.0",
"jotai-devtools": "^0.14.0",
"lint-staged": "^16.4.0",
"rollup-plugin-visualizer": "^5.14.0",
"typescript": "^5.9.3",
"vite": "^7.3.6",
"vite-plugin-pwa": "^1.3.0",
"vite-tsconfig-paths": "^6.1.1"
}
}