This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
forked from benvinegar/counterscale
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.49 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
{
"name": "counterscale",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"deploy": "wrangler deploy --var VERSION:$(git rev-parse HEAD)",
"dev": "remix dev --manual -c \"npm start\"",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "wrangler dev --var VERSION:$(git rev-parse HEAD)",
"test": "TZ=EST vitest run",
"test-ci": "TZ=EST vitest run --coverage",
"typecheck": "tsc",
"prepare": "husky install"
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@remix-run/cloudflare": "^2.8.1",
"@remix-run/css-bundle": "^2.8.1",
"@remix-run/react": "^2.8.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"dayjs": "^1.11.10",
"isbot": "^3.6.8",
"lucide-react": "^0.302.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.10.3",
"run": "^1.4.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"ua-parser-js": "^1.0.37"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"@remix-run/dev": "^2.8.1",
"@remix-run/testing": "^2.8.0",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/recharts": "^1.8.29",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@vitest/coverage-istanbul": "^1.2.0",
"@vitest/coverage-v8": "^1.2.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdom": "^23.2.0",
"node-mocks-http": "^1.14.0",
"prettier": "^3.2.5",
"resize-observer-polyfill": "^1.5.1",
"tailwindcss": "^3.4.0",
"typescript": "^5.1.6",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^1.2.0",
"vitest-dom": "^0.1.1",
"wrangler": "^3.50.0"
},
"engines": {
"node": ">=20.0.0"
}
}