-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "super-kingdoms",
"license": "Apache-2.0",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "remix vite:dev",
"build": "remix vite:build --minify=false",
"build2": "npm run fix && remix vite:build --minify=false",
"start": "remix-serve ./build/server/index.js",
"format": "prettier --write .",
"lint": "eslint .",
"fix": "npm run format && npm run lint -- --fix && npm run typecheck",
"deploy": "flyctl deploy",
"restart": "flyctl apps restart",
"app-stop": "flyctl scale count 0",
"app-start": "flyctl scale count 1",
"typecheck": "tsc"
},
"dependencies": {
"@clerk/remix": "^3.2.1",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"@upstash/redis": "^1.29.0",
"classnames": "^2.5.1",
"isbot": "^3.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-typedjson": "^0.4.1"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.4",
"@remix-run/dev": "^2.8.1",
"@remix-run/eslint-config": "^2.8.1",
"@tailwindcss/typography": "^0.5.12",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"daisyui": "^4.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.3",
"vite": "^5.2.8",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}