-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.29 KB
/
package.json
File metadata and controls
88 lines (88 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
88
{
"name": "syntax-analyzer",
"private": true,
"version": "1.0.0",
"type": "module",
"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"
},
"pnpm": {
"overrides": {
"serialize-javascript": "7.0.5"
}
},
"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.9",
"@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.99.0",
"@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.15.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.18.2",
"jotai": "^2.19.1",
"nanoid": "^5.1.7",
"qs": "^6.15.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.72.1",
"react-icons": "^5.6.0",
"react-router-dom": "^6.30.3",
"sass": "^1.99.0",
"yup": "^1.7.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@hookform/devtools": "^4.4.0",
"@tanstack/react-query-devtools": "^5.99.0",
"@types/node": "^25.6.0",
"@types/qs": "^6.15.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"husky": "^9.1.7",
"jotai-babel": "^0.1.0",
"jotai-devtools": "^0.13.1",
"lint-staged": "^16.4.0",
"rollup-plugin-visualizer": "^5.14.0",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vite-plugin-pwa": "^1.2.0",
"vite-tsconfig-paths": "^6.1.1"
}
}