-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
{
"name": "gigplaylist",
"private": true,
"description": "GigPlayList set you up for your next Gig.",
"author": "Luca Lischetti <luca@sirlisko.com> (https://sirlisko.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/sirLisko/sirLisko/GigPlayList.git"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"unit": "jest",
"lint": "eslint . --ext .jsx,.js --fix",
"test": "pnpm lint && pnpm type-check && pnpm unit",
"type-check": "tsc",
"format": "prettier '**/*.{js,jsx,css,scss,md}' --write"
},
"dependencies": {
"axios": "^1.7.7",
"classnames": "^2.5.1",
"cssnano": "^7.0.6",
"humanize-duration": "^3.32.1",
"jsonpath-plus": "^10.2.0",
"lucide-react": "^0.453.0",
"next": "^14.2.15",
"node-vibrant": "^3.2.1-alpha.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-loader-spinner": "^6.1.6",
"request-ip": "^3.3.0",
"spotify-web-api-js": "^1.5.2",
"spotify-web-api-node": "^5.0.2",
"swr": "^2.2.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.15",
"@types/humanize-duration": "^3.27.4",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.11",
"@types/request-ip": "0.0.41",
"@types/spotify-web-api-node": "^5.0.11",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"autoprefixer": "^10.4.20",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14",
"typescript": "^5.7.3"
},
"keywords": [
"music",
"gig",
"live"
]
}