-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.48 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
{
"name": "amplitune",
"version": "0.1.0",
"private": true,
"main": "main/main.js",
"type": "module",
"scripts": {
"dev:web": "next dev",
"build:web": "next build",
"start": "next start",
"lint": "next lint",
"dev": "next dev",
"build": "next build",
"start:ios": "next build && pnpm cap run ios",
"start:android": "pnpm cap run android",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"build": {
"files": [
"**/*",
"!ios/**",
"!android/**"
]
},
"dependencies": {
"@capacitor/android": "^6.1.2",
"@capacitor/core": "^6.1.2",
"@capacitor/ios": "^6.1.2",
"@capacitor/status-bar": "^6.0.1",
"@hookform/resolvers": "^3.9.0",
"@nextui-org/dropdown": "^2.1.31",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tailwindcss/line-clamp": "^0.4.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.3.0",
"extract-colors": "^4.0.8",
"framer-motion": "^11.7.0",
"fs": "0.0.1-security",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"lucide-react": "^0.446.0",
"md5": "^2.3.0",
"next": "14.2.13",
"next-themes": "^0.3.0",
"prettier-plugin-tailwindcss": "^0.6.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-safe-area": "^0.6.0",
"use-async-resource": "^2.2.2",
"zip": "^1.2.0",
"zod": "^3.23.8",
"zustand": "5.0.0-rc.2"
},
"devDependencies": {
"@capacitor/cli": "^6.1.2",
"@svgr/webpack": "^8.1.0",
"@tauri-apps/cli": "^2.0.4",
"@types/lodash": "^4.17.9",
"@types/md5": "^2.3.5",
"@types/node": "^22.7.2",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"eslint": "^8.41.0",
"eslint-config-next": "14.2.13",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.47",
"prettier": "3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2"
}
}