-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.89 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "attendancecloudapp-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npx tsc && vite build",
"preview": "vite preview",
"format": "npx prettier . --write",
"tsc": "npx tsc",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"pre-commit": "npm run format && npm run lint && npm run tsc",
"test": " jest"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.4.0",
"@mui/icons-material": "^5.3.0",
"@mui/material": "^5.3.0",
"@mui/x-date-pickers": "^6.19.7",
"axios": "^1.6.7",
"dayjs": "^1.11.10",
"js-cookie": "^3.0.5",
"jwt-decode": "^4.0.0",
"moment": "^2.30.1",
"momentjs": "^2.0.0",
"mui-file-input": "^4.0.4",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"styled-components": "^5.3.0",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.17.1",
"@babel/preset-react": "*",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.6",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"babel-jest": "*",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.0.0",
"jsdom-global": "^3.0.2",
"prettier": "^3.2.5",
"ts-jest": "*",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"vite": "^5.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/fileMock.js",
"\\.(css|less)$": "<rootDir>/fileMock.js",
"js-cookie": "__mocks__/js-cookie.tsx"
},
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.jsx?$": "babel-jest"
},
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"testEnvironment": "jsdom"
}
}