-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.69 KB
/
package.json
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
{
"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": "[email protected]:romantech/syntax-analyzer.git"
},
"bugs": {
"url": "https://github.com/romantech/syntax-analyzer/issues"
},
"lint-staged": {
"*.{ts,tsx}": "pnpm run lint:fix"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint --cache . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "pnpm run lint --fix",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"@chakra-ui/react": "^2.10.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fingerprintjs/fingerprintjs": "3.4.2",
"@formkit/auto-animate": "^0.8.2",
"@hookform/resolvers": "^3.10.0",
"@lottiefiles/react-lottie-player": "^3.6.0",
"@tanstack/react-query": "^5.64.2",
"@tsparticles/engine": "^3.7.1",
"@tsparticles/preset-links": "^3.2.0",
"@tsparticles/react": "^3.0.0",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.18.1",
"jotai": "^2.11.0",
"nanoid": "^5.0.9",
"qs": "^6.14.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-router-dom": "^6.28.2",
"sass": "^1.83.4",
"yup": "^1.6.1"
},
"devDependencies": {
"@hookform/devtools": "^4.3.3",
"@tanstack/eslint-plugin-query": "^5.64.2",
"@tanstack/react-query-devtools": "^5.64.2",
"@types/node": "^20.17.14",
"@types/qs": "^6.9.18",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.18",
"husky": "^9.1.7",
"jotai-devtools": "^0.8.0",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2",
"rollup-plugin-visualizer": "^5.14.0",
"typescript": "^5.5.4",
"vite": "^5.4.12",
"vite-plugin-pwa": "^0.19.8",
"vite-tsconfig-paths": "^4.3.2"
}
}