-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
67 lines (67 loc) · 2 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
{
"private": true,
"name": "remix-cloudflare-template",
"type": "module",
"description": "All-in-one remix starter template for Cloudflare Pages",
"scripts": {
"start": "wrangler dev",
"dev": "remix vite:dev",
"test": "playwright test --ui",
"deploy": "wrangler deploy",
"build": "remix vite:build",
"cleanup": "rimraf .cache ./build",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"format": "prettier --write .",
"typecheck": "wrangler types && tsc",
"typegen": "wrangler types",
"prepare": "husky"
},
"dependencies": {
"@markdoc/markdoc": "^0.4.0",
"@remix-run/cloudflare": "^2.12.1",
"@remix-run/cloudflare-pages": "^2.12.1",
"@remix-run/react": "^2.12.1",
"isbot": "^4.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240925.0",
"@octokit/types": "^13.6.0",
"@playwright/test": "^1.47.2",
"@remix-run/dev": "^2.12.1",
"@remix-run/eslint-config": "^2.12.1",
"@tailwindcss/typography": "^0.5.15",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"msw": "^2.4.9",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^4.3.2",
"wrangler": "^3.78.12"
},
"engines": {
"node": ">=20"
},
"sideEffects": false,
"lint-staged": {
"*.{js,mjs,ts,tsx,css,md,yml}": "prettier --write"
}
}