-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "remix-stack-minimal-humanode",
"private": true,
"description": "Minimal Remix Stack with Humanode OAuth2, typsescript, tailwind, linting, and formatting.",
"license": "MIT",
"sideEffects": false,
"scripts": {
"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 -o ./app/tailwind.css",
"lint": "eslint .",
"start": "dotenv -- remix-serve build"
},
"dependencies": {
"@remix-run/node": "^1.8.2",
"@remix-run/react": "^1.8.2",
"@remix-run/serve": "^1.8.2",
"jose": "^4.11.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.4.0",
"remix-auth-oauth2": "^1.5.0",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@remix-run/dev": "^1.8.2",
"@remix-run/eslint-config": "^1.8.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"dotenv-cli": "^6.0.0",
"eslint": "^8.29.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=14"
}
}