-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "domain.willin.wang",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual -c \"npm run start:dev\"",
"start:dev": "wrangler pages dev --compatibility-date=2023-08-15 ./public --local",
"start": "wrangler pages dev --compatibility-date=2023-08-15 ./public",
"typecheck": "tsc",
"db:list": "wrangler d1 migrations list dns",
"db:apply": "npx wrangler d1 migrations apply dns",
"prepare": "husky install"
},
"dependencies": {
"@remix-run/cloudflare": "^2.0.1",
"@remix-run/cloudflare-pages": "^2.0.1",
"@remix-run/react": "^2.0.1",
"classnames": "^2.3.2",
"isbot": "^3.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.5.1",
"remix-auth-sso": "^0.0.2",
"remix-i18n": "^1.0.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230922.0",
"@remix-run/dev": "^2.0.1",
"@remix-run/eslint-config": "^2.0.1",
"@types/react": "^18.2.23",
"@types/react-dom": "^18.2.8",
"daisyui": "^4.4.6",
"eslint": "^8.50.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.2",
"wrangler": "^3.17.1"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx|vue)": [
"prettier --write"
],
"*.+(js|jsx|ts|tsx|vue)": [
"eslint --fix"
]
}
}