-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.74 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
58
59
60
{
"name": "capraconsulting-nettsiden",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "run-p build:*",
"build:remix": "remix build",
"build:ladle": "ladle build",
"dev": "remix dev --no-restart -c \"npm run start\"",
"ladle": "ladle serve",
"start": "wrangler pages dev --compatibility-date=2023-06-28 ./public",
"lint": "eslint \"./{app,studio}/**/*.{ts,tsx,js,jsx}\"",
"lint:fix": "npm run lint -- --fix",
"sanity-codegen": "sanity-codegen"
},
"prettier": {
"trailingComma": "all"
},
"dependencies": {
"@fontsource/source-sans-pro": "5.0.4",
"@portabletext/react": "3.0.4",
"@remix-run/cloudflare": "1.18.1",
"@remix-run/react": "1.18.1",
"@remix-run/server-runtime": "1.18.1",
"@sanity/client": "^6.8.0",
"@sanity/image-url": "1.0.2",
"cross-env": "7.0.3",
"isbot": "3.6.12",
"prism-react-renderer": "2.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"sanity-codegen": "0.9.8",
"zod": "3.21.4"
},
"devDependencies": {
"@cloudflare/workers-types": "3.19.0",
"@ladle/react": "2.15.0",
"@remix-run/dev": "1.18.1",
"@remix-run/eslint-config": "1.18.1",
"@tailwindcss/typography": "0.5.9",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.3.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.6",
"wrangler": "3.1.2"
},
"engines": {
"node": ">=16"
}
}