-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.11 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
{
"name": "psych-pen",
"version": "1.8.0",
"description": "Web statistic app for Psychology and Education",
"engines": {
"bun": "^1.1.32"
},
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/LeafYeeXYZ/PsychPen.git"
},
"author": "LeafYeeXYZ",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/LeafYeeXYZ/PsychPen/issues"
},
"homepage": "https://github.com/LeafYeeXYZ/PsychPen#readme",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src/",
"preview": "vite preview",
"release": "commit-and-tag-version",
"dep": "git push --follow-tags origin main"
},
"dependencies": {
"@ant-design/icons": "^5.6.0",
"@psych/lib": "npm:@jsr/psych__lib",
"@psych/sheet": "npm:@jsr/psych__sheet",
"@tailwindcss/vite": "^4.0.0",
"ag-grid-react": "^32.3.3",
"antd": "^5.23.2",
"bowser": "^2.11.0",
"echarts": "^5.6.0",
"echarts-gl": "^2.0.9",
"echarts-stat": "^1.2.0",
"echarts-wordcloud": "^2.1.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
"html2canvas": "^1.4.1",
"jieba-wasm": "^2.2.0",
"ml-kmeans": "^6.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/bun": "^1.2.0",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.18.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.14.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.11"
},
"commit-and-tag-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Refactoring"
},
{
"type": "perf",
"section": "Improvements"
}
]
}
}