-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.26 KB
/
package.json
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
{
"name": "taskratchet-web",
"type": "module",
"version": "0.2.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"preinstall": "npx only-allow pnpm",
"checkTs": "tsc --noEmit",
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --max-warnings 0 --fix .",
"test": "vitest",
"unused": "pnpm dlx depcheck"
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/react": "^3.6.2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.6",
"@mui/lab": "5.0.0-alpha.173",
"@mui/material": "^5.16.6",
"@mui/x-date-pickers": "^7.12.0",
"@taskratchet/sdk": "^0.0.7",
"astro": "^4.15.1",
"dayjs": "^1.11.12",
"humanize-duration": "^3.32.1",
"query-string": "^9.1.0",
"react": "^18.3.1",
"react-beforeunload": "^2.6.0",
"react-dom": "^18.3.1",
"react-list": "^0.8.17",
"react-query": "3.39.3",
"react-router-dom": "^6.26.0",
"react-toastify": "^10.0.5",
"typescript": "^5.5.4"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/humanize-duration": "^3.27.4",
"@types/node": "^22.1.0",
"@types/react": "^18.3.5",
"@types/react-beforeunload": "^2.1.5",
"@types/react-dom": "^18.3.0",
"@types/react-list": "^0.8.12",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vitest/ui": "^2.0.5",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lodash": "^8.0.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-regex": "^1.10.0",
"eslint-plugin-testing-library": "^6.2.2",
"globals": "^15.9.0",
"jsdom": "^24.1.1",
"prettier": "3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"type-fest": "^4.23.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5",
"vitest-fetch-mock": "^0.3.0"
}
}