-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "spotify-playlist-shuffle",
"private": true,
"scripts": {
"dev": "next dev --hostname 0.0.0.0",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc",
"check": "npm run check-types && npm run lint",
"generate-api": "openapi-generator-cli generate -i 'https://developer.spotify.com/_data/documentation/web-api/reference/open-api-schema.yml' -g typescript-fetch -o spotify-api --skip-validate-spec",
"format": "prettier . --write"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@tanstack/react-query": "^4.29.14",
"framer-motion": "^10.12.16",
"next": "13.4.6",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@types/react": "^18.2.12",
"autoprefixer": "^10.4.14",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3"
}
}