-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.23 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
{
"name": "poly-zg",
"private": true,
"type": "module",
"sideEffects": false,
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"format": "prettier --ignore-path .gitignore --write .",
"format:check": "prettier --ignore-path .gitignore --check .",
"lint:check": "eslint-config-prettier app/root.tsx",
"lint": "eslint --ignore-path .gitignore --report-unused-disable-directives --cache --cache-location ./node_modules/.cache/eslint .",
"setup": "npm install && lefthook run setup",
"start": "remix-serve ./build/server/index.js",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"typecheck": "tsc --build",
"validate": "lefthook run pre-push"
},
"dependencies": {
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"clsx": "^2.1.0",
"isbot": "^5.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tiny-invariant": "^1.3.3"
},
"devDependencies": {
"@mdx-js/rollup": "^3.0.1",
"@playwright/test": "^1.43.1",
"@remix-run/dev": "^2.8.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.12.7",
"@types/react": "^18.2.78",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.2.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.1",
"happy-dom": "^14.7.1",
"lefthook": "^1.6.10",
"msw": "^2.2.13",
"postcss": "^8.4.33",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.8",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.5.0"
},
"engines": {
"node": ">=20"
}
}