-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "apple-music-plus-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "env-cmd -f .env.local next dev",
"dev:production": "env-cmd -f .env.production next dev",
"build": "next build",
"build:dev": "env-cmd -f .env.local next build",
"build:production": "env-cmd -f .env.production next build",
"start": "next start",
"start:dev": "env-cmd -f .env.local next start",
"start:production": "env-cmd -f .env.production next start",
"lint": "next lint",
"postinstall": "sed -i 's/@jsx $jsx/NOPE!/g' ./node_modules/framework7/components/dialog/dialog-class.js"
},
"dependencies": {
"@ionic/react": "^7.8.3",
"@types/react-speech-recognition": "^3.9.5",
"axios": "^1.7.7",
"env-cmd": "^10.1.0",
"framework7": "^8.3.3",
"framework7-icons": "^5.0.5",
"framework7-react": "^8.3.3",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"musickit-typescript": "^1.2.4",
"next": "14.2.15",
"next-pwa": "^5.6.0",
"react": "^18",
"react-device-detect": "^2.2.3",
"react-dom": "^18",
"react-icons": "^5.0.1",
"react-query": "^3.39.3",
"react-speech-recognition": "^3.10.0",
"sharp": "^0.33.2",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/lodash": "^4.17.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8",
"prettier": "^3.2.5",
"replace": "^1.2.2",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}