This repository was archived by the owner on Mar 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.15 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.15 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
{
"name": "backlog-app",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"unit": "vitest",
"e2e": "npx playwright test --config=playwright.config.ts",
"lint": "eslint src",
"cleanup": "eslint --fix src && prettier --write src"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@headlessui/react": "1.7.11",
"@nanostores/react": "0.4.1",
"@tanstack/react-virtual": "3.0.0-beta.49",
"autoprefixer": "10.4.13",
"classnames": "2.3.2",
"compose-function": "3.0.3",
"daisyui": "2.51.2",
"firebase": "9.17.1",
"i18next": "22.4.9",
"nanostores": "0.7.4",
"postcss": "8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-firebase-hooks": "5.1.1",
"react-hook-form": "^7.43.2",
"react-i18next": "12.1.4",
"react-router": "6.6.2",
"react-router-dom": "6.6.2",
"tailwindcss": "3.2.7",
"uuid": "9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@playwright/test": "^1.29.2",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/compose-function": "0.0.30",
"@types/i18n": "0.13.6",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/react-i18next": "8.1.0",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/uuid": "9.0.0",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"@vitejs/plugin-react": "3.0.1",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-react": "7.32.0",
"eslint-plugin-react-hooks": "4.6.0",
"howlongtobeat": "1.7.0",
"husky": "^8.0.3",
"jsdom": "^21.0.0",
"prettier": "2.8.2",
"sass": "1.57.1",
"typescript": "4.9.4",
"typescript-plugin-css-modules": "4.1.1",
"vite": "4.0.4",
"vite-plugin-mkcert": "1.10.1",
"vite-tsconfig-paths": "4.0.3",
"vitest": "0.27.1"
}
}