-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.6 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.6 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
{
"name": "bordy",
"version": "2.5.0",
"description": "A simple, fast, and privacy-focused Kanban board application with Calendar and Agenda views",
"private": true,
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.2.6",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"idb": "^8.0.0",
"lucide-react": "^0.312.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-scripts": "5.0.1",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"@playwright/test": "^1.41.0",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^14.2.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^30.0.0",
"@types/node": "^16.18.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/uuid": "^9.0.7",
"autoprefixer": "^10.4.17",
"fake-indexeddb": "^5.0.2",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"typescript": "^4.9.5"
},
"scripts": {
"version:sync": "node scripts/sync-version.js",
"prebuild": "npm run version:sync",
"prestart": "npm run version:sync",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:coverage": "react-scripts test --coverage --watchAll=false",
"test:ci": "react-scripts test --watchAll=false",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"kanban",
"board",
"task-management",
"react",
"typescript",
"indexeddb",
"offline-first",
"keyboard-shortcuts",
"task-priority",
"column-colors",
"calendar-view",
"agenda-view",
"markdown",
"attachments"
],
"author": "",
"license": "MIT"
}