-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.88 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.88 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
{
"name": "shiftly",
"private": true,
"version": "0.0.0",
"homepage": "https://dmaman86.github.io/shiftly",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"typecheck": "tsc --project tsconfig.app.json --noEmit",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:ci": "vitest run",
"predeploy": "bun run typecheck && bun run lint && bun run test:ci && bun run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@babel/runtime": "^7.26.10",
"@date-io/date-fns": "^3.2.1",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"@mui/x-date-pickers": "^8.1.0",
"@reduxjs/toolkit": "^2.11.0",
"axios": "^1.9.0",
"date-fns": "^4.1.0",
"i18next": "^26.0.4",
"notistack": "^3.0.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-i18next": "^17.0.3",
"react-redux": "^9.2.0",
"react-router-dom": "^7.11.0",
"stylis": "^4.3.6",
"stylis-plugin-rtl": "^2.1.1"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.14.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"gh-pages": "^6.3.0",
"globals": "^15.15.0",
"jsdom": "^26.1.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0",
"vitest": "^4.0.16"
}
}