-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.81 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
{
"name": "skillissue",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:check": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:staged": "prettier --write --list-different",
"test": "echo \"No tests specified\" && exit 0",
"prepare": "husky"
},
"dependencies": {
"@fancyapps/ui": "^5.0.23",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@react-spring/animated": "^9.7.5",
"@react-spring/web": "^9.7.5",
"@react-three/drei": "^9.121.1",
"@react-three/fiber": "^8.17.12",
"autoprefixer": "^10.4.20",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"gsap": "^3.12.5",
"lodash": "^4.17.21",
"lucide-react": "^0.511.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0",
"react-spring": "^10.0.1",
"react-use": "^17.6.0",
"three": "^0.172.0",
"three-mesh-bvh": "^0.8.0",
"three-stdlib": "^2.35.7",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/lodash": "^4.17.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.9",
"husky": "^9.1.7",
"postcss": "^8.5.1",
"prettier": "^3.6.2",
"rollup": "^4.52.2",
"sass": "^1.77.0",
"typescript": "^5.5.4",
"vite": "^5.4.0"
},
"engines": {
"node": "20.x",
"npm": ">=8.0.0"
}
}