-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.15 KB
/
package.json
File metadata and controls
82 lines (82 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
77
78
79
80
81
82
{
"name": "final-project-fe",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"@stomp/stompjs": "^6.1.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-query": "^1.2.9",
"@types/react-redux": "^7.1.25",
"@types/sockjs-client": "^1.5.1",
"@types/stompjs": "^2.3.5",
"@types/styled-components": "^5.1.26",
"aws-sdk": "^2.1290.0",
"axios": "^1.2.2",
"event-source-polyfill": "^1.0.31",
"eventemitter3": "^5.0.0",
"react": "^18.2.0",
"react-cookie": "^4.1.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-h5-audio-player": "^3.8.6",
"react-icons": "^4.7.1",
"react-id-generator": "^3.0.2",
"react-query": "^3.39.2",
"react-redux": "^8.0.5",
"react-router-dom": "^6.6.1",
"react-scripts": "5.0.1",
"react-scroll": "^1.8.9",
"react-share": "^4.4.1",
"react-uuid": "^2.0.0",
"seamless-scroll-polyfill": "^2.2.0",
"sockjs-client": "^1.6.1",
"styled-components": "^5.3.6",
"typescript": "^4.9.4",
"wavesurfer.js": "^6.4.0",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "react-scripts start",
"build:dev": "NODE_ENV=development CI=false react-scripts build",
"build:prod": "NODE_ENV=production GENERATE_SOURCEMAP=false CI=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/wavesurfer.js": "^6.0.3",
"msw": "^0.49.2",
"ts-jest": "^29.0.5"
},
"msw": {
"workerDirectory": "public"
},
"jest": {
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
}
}
}