-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.53 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
{
"name": "psych-pen",
"version": "1.5.0",
"description": "Web statistic app for Psychology and Education",
"engines": {
"bun": "^1.1.32"
},
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/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": "bunx --bun vite",
"build": "bunx --bun vite build",
"wasm": "wasm-pack build ./wasm --target web --out-dir ../src/lib/wasm",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "bunx --bun vite preview",
"release": "commit-and-tag-version",
"dep": "git push --follow-tags origin main"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@leaf/sav-reader": "npm:@jsr/leaf__sav-reader",
"@psych/lib": "npm:@jsr/psych__lib",
"ag-grid-react": "^32.3.2",
"antd": "^5.21.6",
"bowser": "^2.11.0",
"dta": "https://cdn.sheetjs.com/dta-0.0.2/dta-0.0.2.tgz",
"echarts": "^5.5.1",
"echarts-gl": "^2.0.9",
"echarts-stat": "^1.2.0",
"echarts-wordcloud": "^2.1.0",
"html2canvas": "^1.4.1",
"hyparquet": "^1.5.0",
"jieba-wasm": "^2.2.0",
"ml-kmeans": "^6.0.0",
"react": "rc",
"react-dom": "rc",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/bun": "^1.1.13",
"@types/react": "npm:types-react@rc",
"@types/react-dom": "npm:types-react-dom@rc",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "^19.0.0-beta-9ee70a1-20241017",
"commit-and-tag-version": "^12.5.0",
"eslint": "^9.14.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-9ee70a1-20241017",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.14",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10"
},
"commit-and-tag-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Refactoring"
},
{
"type": "perf",
"section": "Performance"
}
]
}
}