-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.64 KB
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
{
"name": "web-ruler",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbo",
"build": "NEXT_TELEMETRY_DISABLED=1 next build",
"start": "next start",
"lint": "run-p --continue-on-error 'lint:*'",
"lint:eslint": "eslint .",
"lint:typecheck": "tsc --noEmit",
"lint:prettier": "prettier --check .",
"fix": "run-s --continue-on-error fix:eslint fix:prettier",
"fix:eslint": "eslint . --fix",
"fix:prettier": "prettier --write .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "playwright test",
"prepare": "lefthook install"
},
"dependencies": {
"@mantine/core": "^8.3.9",
"@mantine/hooks": "^8.3.9",
"@opennextjs/cloudflare": "^1.14.3",
"@tailwindcss/postcss": "^4.1.17",
"lucide-react": "^0.555.0",
"next": "16.0.7",
"postcss": "^8.5.6",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tailwindcss": "^4.1.17"
},
"devDependencies": {
"@next/eslint-plugin-next": "^16.0.7",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.1",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-plugin-unused-imports": "^4.3.0",
"jsdom": "^27.2.0",
"lefthook": "^2.0.7",
"npm-run-all2": "^8.0.4",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vitest": "^4.0.15",
"wrangler": "^4.52.1"
}
}