-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
170 lines (170 loc) · 4.41 KB
/
package.json
File metadata and controls
170 lines (170 loc) · 4.41 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "humanos",
"version": "2.5.0",
"description": "HumanOS - 开源专业测评平台集合,情商、人格、价值观等多维度测评系统",
"author": {
"name": "HumanOS Team",
"email": "contact@humanos.dev",
"url": "https://github.com/badhope"
},
"main": "dist/index.html",
"module": "dist/index.html",
"exports": {
".": "./dist/index.html"
},
"files": [
"dist",
"src"
],
"license": "CC-BY-NC-4.0",
"type": "module",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://humanos.dpdns.org",
"repository": {
"type": "git",
"url": "git+https://github.com/badhope/HumanOS.git"
},
"bugs": {
"url": "https://github.com/badhope/HumanOS/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/badhope"
},
"keywords": [
"assessment",
"assessment-platform",
"personality-test",
"emotional-intelligence",
"eq-test",
"iq-test",
"psychological-test",
"skill-assessment",
"online-quiz",
"mbti",
"big-five",
"ocean",
"ideology",
"political-compass",
"parenting-assessment",
"career-planning",
"ability-test",
"personality-analysis",
"psychological-assessment",
"react",
"typescript",
"vite",
"tailwindcss",
"web-app",
"open-source",
"测评平台",
"情商测评",
"人格测试",
"心理测评",
"职业测评",
"技能评估"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,json}\"",
"clean": "rm -rf dist node_modules/.vite",
"prepare": "husky install || true",
"deploy": "node deploy.mjs",
"deploy:all": "node deploy.mjs all",
"deploy:vercel": "node deploy.mjs vercel",
"deploy:netlify": "node deploy.mjs netlify",
"deploy:cloudflare": "node deploy.mjs cloudflare",
"deploy:surge": "node deploy.mjs surge",
"vercel": "vercel --prod",
"netlify": "netlify deploy --prod --dir=dist",
"cloudflare": "wrangler pages deploy dist",
"surge": "surge dist humanos.surge.sh",
"ecosystem": "node scripts/submit-ecosystem.js",
"platforms": "node scripts/auto-index-platforms.js",
"analyze": "npx vite-bundle-visualizer",
"check:integrity": "node scripts/integrity-check.mjs",
"quality": "npm run typecheck && npm run lint && npm run check:integrity"
},
"dependencies": {
"@react-three/drei": "^9.92.0",
"@react-three/fiber": "^8.15.11",
"@use-gesture/react": "^10.3.0",
"axios": "^1.15.0",
"canvas-confetti": "^1.9.2",
"clsx": "^2.0.0",
"framer-motion": "^10.16.5",
"gsap": "^3.12.3",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1",
"lenis": "^1.0.42",
"lucide-react": "^0.294.0",
"qrcode.react": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.6.0",
"react-router-dom": "^6.20.0",
"recharts": "^2.10.3",
"tailwind-merge": "^2.1.0",
"three": "^0.158.0",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/canvas-confetti": "^1.6.4",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/three": "^0.158.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.4",
"globals": "^17.4.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"tailwindcss": "^3.3.6",
"terser": "^5.46.1",
"typescript": "^5.2.2",
"vite": "^5.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,json,md}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}