-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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
{
"private": true,
"sideEffects": false,
"scripts": {
"typecheck": "tsc -b",
"build": "run-s \"build:*\"",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p \"dev:*\"",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix dev",
"generate:css": "npx tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css",
"prepare": "husky install"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-radio-group": "^1.1.1",
"@remix-run/node": "^1.13.0",
"@remix-run/react": "^1.13.0",
"@remix-run/vercel": "^1.13.0",
"@thomasngrlt/spotify-web-api-ts": "^1.6.0",
"@vercel/node": "^2.9.6",
"date-fns": "^2.29.3",
"framer-motion": "^9.0.4",
"iconoir-react": "^6.2.1",
"isbot": "^3.6.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-wrap-balancer": "^0.4.0",
"zod": "^3.20.6"
},
"devDependencies": {
"@remix-run/dev": "^1.13.0",
"@remix-run/eslint-config": "^1.13.0",
"@remix-run/serve": "^1.13.0",
"@tailwindcss/typography": "^0.5.9",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"eslint": "^8.34.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}