-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "kanban-react",
"version": "0.1.0",
"private": true,
"type": "module",
"homepage": "https://www.kanbanish.com",
"dependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^13.5.0",
"firebase": "^11.6.1",
"markdown-to-jsx": "^9.7.6",
"react": "^19.1.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^19.1.0",
"react-feather": "^2.0.10"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . --max-warnings 0",
"test:e2e": "npx playwright test",
"test:e2e:headed": "npx playwright test --headed"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@playwright/test": "^1.58.2",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.32.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jsdom": "^26.1.0",
"vite": "^6.3.3",
"vitest": "^3.1.2"
}
}