-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"private": true,
"name": "remix-scrum-poker",
"description": "",
"license": "",
"scripts": {
"clean": "rm -rf ./build",
"build": "npm run clean && npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/tailwind.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/tailwind.css -o app/styles/app.css",
"dev:netlify": "cross-env NODE_ENV=development netlify dev",
"deploy:netlify": "yarn clean && yarn build && netlify deploy --prod",
"postinstall": "remix setup node",
"start": "remix-serve build"
},
"dependencies": {
"@netlify/functions": "^0.10.0",
"@remix-run/netlify": "^1.0.6",
"@remix-run/react": "^1.0.6",
"@remix-run/serve": "^1.0.6",
"@supabase/supabase-js": "^1.29.3",
"@types/uuid": "^8.3.4",
"cross-env": "^7.0.3",
"dotenv": "^15.0.0",
"human-readable-ids": "^1.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.0.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@remix-run/dev": "^1.0.6",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.2",
"concurrently": "^6.4.0",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.0",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}