-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 4.82 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 4.82 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "pr-web",
"license": "MIT",
"private": true,
"version": "1.0.0",
"scripts": {
"build": "vite build",
"bumb:patch": "./scripts/bump.sh patch",
"bumb:minor": "./scripts/bump.sh minor",
"bumb:main": "./scripts/bump.sh main",
"dev": "vite",
"prepare": "husky install",
"preview": "vite preview",
"preview:test": "start-server-and-test preview http://localhost:4173",
"test": "vitest",
"test:ci": "vitest run",
"test:e2e": "pnpm preview:test 'cypress open'",
"test:e2e:headless": "pnpm preview:test 'cypress run'",
"test:e2e:ci": "vite build && pnpm preview:test 'cypress run'",
"format": "prettier -w --cache --ignore-path .gitignore --ignore-path .prettierignore .",
"lint": "run-p lint:*",
"lint:tsc": "tsc",
"lint:eslint": "eslint --cache --fix .",
"lint:stylelint": "stylelint --cache --fix --ignore-path .gitignore **/*.css",
"types-gen": "run-s types-fetch types-make format",
"types-fetch": "run-p types-fetch:*",
"types-fetch:status": "curl 'http://localhost:8448/api/v1/schema/status' > /tmp/pr-web-status-schema.json",
"types-fetch:message": "curl 'http://localhost:8448/api/v1/schema/message' > /tmp/pr-web-message-schema.json",
"types-fetch:response": "curl 'http://localhost:8448/api/v1/schema/response' > /tmp/pr-web-response-schema.json",
"types-make": "run-p types-make:*",
"types-make:status": "npx quicktype -s schema /tmp/pr-web-status-schema.json -o src/generated/status.ts --just-types --top-level PrapiStatus",
"types-make:message": "npx quicktype -s schema /tmp/pr-web-message-schema.json -o src/generated/message.ts --just-types --top-level PrapiMessage",
"types-make:response": "npx quicktype -s schema /tmp/pr-web-response-schema.json -o src/generated/response.ts --just-types --top-level PrapiResponse",
"validate": "run-p lint test:ci test:e2e:headless"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-toggle": "^1.1.0",
"@tanstack/react-query": "5.100.9",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"immer": "^10.1.1",
"jotai": "^2.9.3",
"jotai-devtools": "^0.12.0",
"jotai-immer": "^0.4.1",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"lucide-react": "^0.577.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "7.14.2",
"react-use-websocket": "4.13.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"vite-plugin-pwa": "^1.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@nabla/vite-plugin-eslint": "2.0.6",
"@tailwindcss/forms": "0.5.11",
"@testing-library/cypress": "10.1.3",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "14.6.1",
"@types/css-mediaquery": "0.1.4",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.throttle": "^4.1.9",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "8.59.2",
"@typescript-eslint/parser": "8.59.2",
"@vitejs/plugin-react": "4.7.0",
"@vitest/coverage-istanbul": "3.2.4",
"autoprefixer": "10.5.0",
"css-mediaquery": "0.1.2",
"cypress": "15.14.2",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "9.1.7",
"jsdom": "27.4.0",
"lint-staged": "16.4.0",
"msw": "2.14.3",
"npm-run-all2": "8.0.4",
"postcss": "8.5.14",
"prettier": "3.8.3",
"prettier-plugin-tailwindcss": "0.8.0",
"quicktype": "^23.0.170",
"start-server-and-test": "2.1.5",
"stylelint": "16.26.1",
"stylelint-config-standard": "39.0.1",
"tailwindcss": "3.4.19",
"typescript": "5.9.3",
"typescript-eslint": "^8.13.0",
"vite": "5.4.21",
"vitest": "3.2.4",
"whatwg-fetch": "3.6.20"
},
"browserslist": {
"production": "Edge >= 18, Firefox >= 60, Chrome >= 61, Safari >= 11, Opera >= 48",
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"lint-staged": {
"*": "prettier -uw --cache",
"*.css": "stylelint --cache --fix",
"*.{ts,tsx}": [
"eslint --cache --fix",
"vitest related --run --coverage=false"
]
},
"pnpm": {
"overrides": {
"headers-polyfill": "5.0.1",
"parse5": "^8.0.0"
}
}
}