-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build:css": "tailwindcss -m -o ./app/tailwind.css",
"build": "npm run build:css && remix build",
"dev:css": "tailwindcss -w -o ./app/tailwind.css",
"dev:remix": "remix watch",
"dev:wrangler": "cross-env NODE_ENV=development npm run wrangler",
"dev": "npm run build && run-p \"dev:*\"",
"start": "cross-env NODE_ENV=production npm run wrangler",
"typecheck": "tsc -b",
"wrangler": "wrangler pages dev ./public --kv KV",
"lint": "eslint \"./app/**/*.{ts,tsx,js,jsx}\"",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@notionhq/client": "2.2.14",
"@remix-run/cloudflare": "1.11.1",
"@remix-run/cloudflare-pages": "1.11.1",
"@remix-run/react": "1.11.1",
"cross-env": "7.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"zod": "3.22.4",
"remix-utils": "3.2.0",
"phosphor-react": "1.4.1"
},
"overrides": {
"vm2": "^3.9.19"
},
"devDependencies": {
"@cloudflare/workers-types": "3.19.0",
"@remix-run/dev": "1.11.1",
"@remix-run/eslint-config": "1.11.1",
"@types/react": "18.2.77",
"@types/react-dom": "18.2.25",
"eslint": "8.32.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "9.0.0",
"npm-run-all2": "5.0.2",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.2.2",
"tailwindcss": "3.4.3",
"typescript": "4.9.5",
"wrangler": "3.51.0"
},
"engines": {
"node": ">=16.13"
},
"prettier": {
"trailingComma": "all"
}
}