This repository has been archived by the owner on May 5, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.26 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
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"sideEffects": false,
"author": "Logan McAnsh <[email protected]> (https://mcan.sh)",
"license": "MIT",
"repository": "mcansh/blog",
"homepage": "https://mcansh.blog",
"engines": {
"node": ">=14.x"
},
"scripts": {
"dev": "remix build && run-p dev:*",
"dev:css": "tailwindcss --output ./app/styles/tailwind.css --watch --postcss",
"dev:miniflare": "miniflare ./build/index.js --watch",
"dev:remix": "remix watch",
"prebuild": "npm run clean",
"build:css": "tailwindcss --output ./app/styles/tailwind.css --minify --postcss",
"build:remix": "remix build",
"build": "run-s build:*",
"lint": "eslint --ignore-path .gitignore --fix --cache --ext js,ts,tsx,mdx,md .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx)\"",
"type-check": "tsc",
"validate": "npm-run-all --parallel lint format type-check test",
"postinstall": "husky install .config/husky && remix setup cloudflare-workers",
"clean": "del .cache app/styles server/build public/build",
"start": "miniflare ./build/index.js",
"deploy": "npm run build && wrangler publish"
},
"dependencies": {
"@remix-run/cloudflare": "1.7.5",
"@remix-run/cloudflare-workers": "1.7.5",
"@remix-run/react": "1.7.5",
"fathom-client": "3.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"remix-utils": "4.0.0",
"type-fest": "3.2.0"
},
"devDependencies": {
"@cloudflare/workers-types": "3.18.0",
"@remix-run/dev": "1.7.5",
"@remix-run/eslint-config": "1.7.5",
"@remix-run/serve": "1.7.5",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"del-cli": "5.0.0",
"eslint": "8.27.0",
"eslint-plugin-prefer-let": "3.0.1",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"miniflare": "2.11.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.18",
"postcss-100vh-fix": "1.0.2",
"prettier": "2.7.1",
"tailwindcss": "3.2.3",
"typescript": "4.8.4",
"wrangler": "2.1.15"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx|mjs|cjs)": [
"eslint --fix",
"prettier --write"
],
"*.+(json|yml|yaml|css|less|scss|md|graphql|mdx)": [
"prettier --write"
]
}
}