-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.17 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
{
"name": "spotify-clone",
"version": "1.0.0",
"description": "A Spotify clone built with Next.js and Tailwind CSS.",
"main": "src/index.ts",
"rootDir": "src",
"scripts": {
"test": "mocha --require ts-node/register tests/**/*.ts",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"prettier": "prettier .",
"prettier:fix": "prettier --write .",
"dev": "next dev",
"build": "next build",
"start": "next start",
"coverage": "nyc npm run test"
},
"pre-commit": [
"lint:fix",
"prettier:fix",
"build",
"test",
"coverage"
],
"keywords": [],
"author": "FallenDeity",
"license": "MIT",
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.9",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.1",
"@types/spotify-web-api-node": "^5.0.7",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"autoprefixer": "^10.4.14",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"postcss": "^8.4.24",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"useTabs": true,
"semi": true,
"printWidth": 120,
"bracketSpacing": true,
"bracketSameLine": true
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-slider": "^1.1.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@types/react": "^18.2.8",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"lucide-react": "^0.259.0",
"next": "^13.4.4",
"next-auth": "^4.22.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"recoil": "^0.7.7",
"sharp": "^0.32.1",
"spotify-web-api-node": "^5.0.2",
"tailwind-merge": "^1.13.2",
"tailwind-scrollbar": "^3.0.4",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.6",
"winston": "^3.9.0"
}
}