-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.9 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
{
"name": "book-donation",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.5",
"@mui/lab": "^5.0.0-alpha.53",
"@mui/material": "^5.0.6",
"axios": "^1.6.4",
"chart.js": "^3.6.0",
"copy-to-clipboard": "^3.3.1",
"faker": "^5.5.3",
"formik": "^2.2.9",
"formik-mui": "^4.0.0-alpha.3",
"notistack": "^2.0.3",
"react": "^17.0.0",
"react-chartjs-2": "^4.0.0",
"react-dom": "^17.0.0",
"react-router-dom": "6.23.0",
"react-query": "^4.0.0",
"socket.io-client": "^4.4.0",
"use-sound": "^4.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-router-dom": "^5.3.2",
"@vitejs/plugin-react": "^1.0.0",
"jest": "^27.4.4",
"ts-jest": "^27.1.1",
"typescript": "^4.3.2",
"vite": "^2.6.4"
},
"engines": {
"node": "17.2.0"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/fileTransform.js",
"\\.(css|less|scss|sass)$": "<rootDir>/styleTransform.js",
"^src(.*)$": "<rootDir>/src$1"
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}