-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.86 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "musy",
"private": true,
"description": "spotify & friends",
"license": "",
"packageManager": "yarn@3.5.1",
"type": "module",
"main": "server/index.ts",
"module": "server/index.ts",
"scripts": {
"build": "remix vite:build",
"start": "tsx --no-warnings ./server/index.ts",
"dev": "prisma generate && prisma migrate dev && tsx --no-warnings ./server/index.ts",
"deploy": "fly deploy --remote-only",
"format": "biome format --write ./app",
"typecheck": "tsc",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'update CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'update CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'update CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
"prod:db": "fly ssh console -C database-cli",
"find-deadcode": "yarn ts-prune --ignore 'app/routes|app/services|app/lib|app/root|app/context|app/entry.server.tsx|app/createEmotionCache'",
"docker:build": "docker build -t musy .",
"docker:run": "docker run --rm -d -p 8080:8080 --env-file .env musy"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,cjs,mjs}": [
"biome --write"
],
"src/**/*.{json,css,scss,md}": [
"biome --write"
]
},
"dependencies": {
"@bull-board/express": "^5.17.0",
"@chakra-ui/icons": "^2.1.1",
"@hono/node-server": "^1.11.1",
"@prisma/client": "^3.15.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@remix-run/express": "^2.9.1",
"@remix-run/node": "^2.9.1",
"@remix-run/react": "^2.9.1",
"@tanstack/react-virtual": "3.5.0",
"@types/express": "^4.17.21",
"ahooks": "^3.7.8",
"better-logging": "^5.0.0",
"bullmq": "^5.7.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"framer-motion": "^8.5.5",
"groq-sdk": "^0.3.3",
"hono": "^4.3.2",
"iconsax-react": "^0.0.8",
"ioredis": "^5.4.1",
"openai": "^4.24.7",
"posthog-js": "^1.130.2",
"react": "18.3.1",
"react-color": "^2.19.3",
"react-colorful": "^5.6.1",
"react-dom": "18.3.1",
"react-feather": "^2.0.10",
"remix": "^2.9.1",
"remix-auth": "^3.6.0",
"remix-auth-oauth2": "^1.11.2",
"remix-auth-spotify": "^1.3.2",
"remix-hono": "^0.0.16",
"remix-typedjson": "^0.4.1",
"remix-utils": "^7.6.0",
"spotify-web-api-node": "^5.0.2",
"supports-color": "^9.4.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"tiny-invariant": "^1.3.3",
"tsx": "^4.9.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@biomejs/biome": "^1.7.2",
"@commitlint/config-conventional": "^17.8.1",
"@hono/vite-dev-server": "^0.12.0",
"@manypkg/cli": "^0.21.0",
"@remix-run/dev": "^2.9.1",
"@types/react": "^18.3.1",
"@types/react-color": "^3.0.9",
"@types/react-dom": "^18.3.0",
"@types/spotify-web-api-node": "^5.0.11",
"add": "^2.0.6",
"autoprefixer": "latest",
"commitlint": "^17.8.1",
"generate-changelog": "^1.8.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"postcss": "^8.4.33",
"prisma": "^3.15.2",
"remix-development-tools": "4.1.5",
"remix-flat-routes": "^0.6.4",
"tailwindcss": "latest",
"ts-prune": "^0.10.3",
"typescript": "^5.2.2",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2"
},
"peerDependencies": {
"zod": "3.19.1"
},
"engines": {
"node": ">=18"
}
}