forked from rpp31-boc-atropos/SoundTok-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.78 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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "SoundTok-Frontend",
"version": "0.1.0",
"description": "Blue Ocean App",
"private": true,
"author": "Clayton, Julie, Maggie, Poyraz, Rick, Yu, Yuanqi",
"dependencies": {
"@auth0/auth0-react": "^1.9.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.4",
"axios": "^0.25.0",
"babel-loader": "^8.2.3",
"compression": "^1.7.4",
"compression-webpack-plugin": "^9.2.0",
"cors": "^2.8.5",
"css-loader": "^6.6.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"debounce": "^1.2.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-jwt": "^6.1.0",
"file-saver": "^2.0.5",
"framer-motion": "^6.2.6",
"jwks-rsa": "^2.0.5",
"linkify-plugin-hashtag": "^3.0.4",
"linkify-react": "^3.0.4",
"linkifyjs": "^3.0.5",
"luxon": "^2.3.0",
"mini-css-extract-plugin": "^2.5.3",
"nodemon": "^2.0.15",
"react": "^17.0.2",
"react-click-outside-hook": "^1.1.1",
"react-dom": "^17.0.2",
"react-h5-audio-player": "^3.8.2",
"react-icons": "^4.3.1",
"react-modal": "^3.14.4",
"react-router-dom": "^6.2.1",
"react-spinners": "^0.11.0",
"react-wavify": "^1.5.4",
"sass": "^1.49.7",
"sass-loader": "^12.4.0",
"styled-components": "^5.3.3",
"tone": "^14.7.77",
"waveform-playlist": "^4.3.3",
"wavesurfer.js": "^6.0.0",
"webpack": "^5.68.0"
},
"scripts": {
"start": "nodemon server/http_server.js",
"https": "nodemon server/https_server.js",
"build": "webpack -w",
"buildOnce": "webpack",
"test1": "jest --coverage",
"test": "exit 0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"@testing-library/jest-dom"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.17.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"eslint": "^8.8.0",
"eslint-plugin-react": "^7.28.0",
"file-loader": "^6.2.0",
"jest": "^27.5.0",
"svg-url-loader": "^7.1.1",
"webpack-cli": "^4.9.2"
}
}