-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.68 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "pwhl-remix",
"version": "1.0.0",
"description": "",
"type": "module",
"private": true,
"scripts": {
"build": "run-s build:*",
"build:css": "run-s -n 'generate:css -- --minify'",
"build:remix": "remix vite:build",
"build:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --minify --bundle --format=esm",
"dev": "run-p -n dev:*",
"dev:css": "run-s -n 'generate:css -- --watch'",
"dev:remix": "remix vite:dev",
"dev:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --bundle --format=esm --define:process.env.NODE_ENV='\"development\"' --watch",
"generate:css": "tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css",
"generate:icons": "npx @svgr/cli --out-dir app/components/icons -- app/icons",
"lint": "run-s 'lint:*'",
"lint:es": "eslint app --max-warnings=0",
"lint:style": "prettier 'app/**/*.(ts|tsx)' --check",
"serve": "remix-serve ./build/server/index.js",
"start": "run-s -n dev serve",
"test": "TZ=UTC vitest run --coverage",
"test:ci": "TZ=UTC vitest run",
"typecheck": "tsc -b"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@heroicons/react": "^2.1.5",
"@internationalized/date": "^3.5.6",
"@remix-run/node": "^2.14.0",
"@remix-run/react": "^2.14.0",
"@vercel/analytics": "^1.0.2",
"cross-fetch": "^3.1.5",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"isbot": "^3.8.0",
"react": "^18.2.0",
"react-aria-components": "^1.4.1",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@remix-run/dev": "^2.14.0",
"@svgr/cli": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-prettier": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.37.2",
"jsdom": "^25.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.0",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.4.14",
"tailwindcss-react-aria-components": "^1.1.6",
"typescript": "^5.1.6",
"typescript-eslint": "^8.13.0",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
},
"volta": {
"node": "22.11.0"
},
"engines": {
"node": ">= 18"
},
"overrides": {
"@remix-run/server-runtime": {
"cookie": "^0.7.2"
}
}
}