-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.84 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"db:start": "npx supabase start -x gotrue,realtime,storage-api,imgproxy,inbucket,pgadmin-schema-diff,migra,postgres-meta,studio,deno-relay",
"dev": "remix dev",
"format": "prettier --write . --log-level silent",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"start": "node --require dotenv/config node_modules/@remix-run/serve/dist/cli.js build/index.js",
"test": "vitest --coverage",
"test:coverage": "open coverage/index.html; vitest --coverage",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 \"npx cypress open\"",
"pretest:e2e:run": "npm run build",
"test:e2e:run": "cross-env PORT=8811 start-server-and-test start http://localhost:8811 \"npx cypress run\"",
"typecheck": "tsc -b && tsc -b cypress",
"validate": "run-p \"test -- --run\" format lint typecheck test:e2e:run"
},
"dependencies": {
"@radix-ui/react-dialog": "1.0.3",
"@radix-ui/react-dropdown-menu": "2.0.4",
"@radix-ui/react-popover": "1.0.5",
"@radix-ui/react-slider": "1.1.1",
"@radix-ui/react-switch": "1.0.2",
"@radix-ui/react-toast": "1.1.3",
"@radix-ui/react-toggle": "1.0.2",
"@remix-run/node": "2.0.0",
"@remix-run/react": "2.0.0",
"@remix-run/vercel": "1.19.3",
"@supabase/supabase-js": "^2.44.3",
"@vercel/analytics": "^1.0.2",
"@vercel/node": "^2.15.10",
"classnames": "^2.3.2",
"immer": "^10.0.2",
"nanoid": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.8.0",
"use-fit-text": "^2.4.0",
"use-sound": "^4.0.1"
},
"devDependencies": {
"@remix-run/dev": "2.0.0",
"@remix-run/serve": "^2.0.0",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.29.8",
"cross-env": "^7.0.3",
"cypress": "13.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^8.9.0",
"msw": "^1.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.4.1",
"start-server-and-test": "^2.0.3",
"supabase": "^1.183.5",
"tailwindcss": "^3.3.2",
"typescript": "^5.2.2",
"vite": "^4.5.3",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.29.8"
},
"engines": {
"node": ">=18"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/api"
]
}