-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
70 lines (70 loc) · 2.05 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
{
"private": true,
"name": "remix-starter-kit",
"description": "",
"license": "",
"scripts": {
"build:remix": "remix build",
"dev:remix": "node -r dotenv/config node_modules/.bin/remix dev",
"start": "remix-serve build",
"build:css": "cross-env NODE_ENV=production tailwindcss -i ./app/styles/tailwind.css -o ./app/styles/app.css --minify",
"dev:css": "tailwindcss -i ./app/styles/tailwind.css -o ./app/styles/app.css --watch",
"dev": "concurrently \"npm:dev:*\"",
"build": "npm run build:css && npm run build:remix",
"lint": "eslint --ext \".js,.jsx,.ts,.tsx\" --ignore-path .gitignore .",
"test": "cross-env TEST=true playwright test",
"postinstall": "remix setup node",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.4.3",
"@remix-run/react": "^1.1.3",
"@remix-run/serve": "^1.1.3",
"@remix-run/vercel": "^1.1.3",
"@supabase/supabase-js": "^1.29.4",
"dotenv": "^14.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.3.1",
"remix": "^1.1.3",
"remix-seo": "^0.1.0"
},
"devDependencies": {
"@playwright/test": "^1.18.0",
"@remix-run/dev": "^1.1.3",
"@remix-run/eslint-config": "^1.2.3",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"daisyui": "^1.25.4",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.1",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"tailwindcss": "^3.0.16",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"husky": {
"hooks": {
"pre-commit": "CI=1 lint-staged"
}
},
"lint-staged": {
"*.+(js|mjs|ts|tsx|css|md|yml)": [
"prettier --write"
]
}
}