-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.86 KB
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
{
"name": "specialingredientbass.com",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Special Ingredient Bass Music",
"homepage": "specialingredientbass.com",
"scripts": {
"start": "yarn dev",
"dev": "vite --open",
"build": "vite build",
"preview": "yarn build && vite preview --open",
"lint": "yarn lint:fix && yarn ts:check",
"lint:fix": "npx biome check . --fix",
"ts:check": "tsc",
"sandbox": "npx tsx ./sandbox.ts",
"generate-playlist-json": "vite --open --config ./spotify-tools/vite.config.ts ./spotify-tools"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bvandercar-vt/specialingredientbass.com.git"
},
"keywords": [
"bass",
"music"
],
"author": "Blake Vandercar",
"license": "ISC",
"bugs": {
"url": "https://github.com/bvandercar-vt/specialingredientbass.com/issues"
},
"dependencies": {
"@fontsource/barlow": "^5",
"@fontsource/outfit": "^5",
"@fontsource/roboto-condensed": "^5",
"@fortawesome/fontawesome-free": "^6.7",
"@fortawesome/fontawesome-svg-core": "^6.7",
"@fortawesome/free-brands-svg-icons": "^6.7",
"@fortawesome/free-solid-svg-icons": "^6.7",
"@fortawesome/react-fontawesome": "^0.2",
"classnames": "^2",
"es-toolkit": "^1.44",
"merge-refs": "^1",
"react": "^18",
"react-dom": "^18",
"react-masonry-css": "^1",
"soundcloud-widget": "^0.2.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3",
"@spotify/web-api-ts-sdk": "^1.2",
"@tailwindcss/vite": "^4.1",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4",
"autoprefixer": "^10",
"dotenv": "^16",
"prettier": "^3",
"tailwindcss": "^4.1",
"type-fest": "^4",
"typescript": "^5",
"vite": "^5",
"vite-plugin-fs": "^1"
}
}