forked from MZBR-2023/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.02 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
{
"name": "mzbr_frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve --mode development --open --hot --config webpack.dev.js",
"prod": "cross-env NODE_ENV=production webpack serve --mode production --open --hot --config webpack.prod.js",
"build": "cross-env NODE_ENV=production webpack --mode production --config webpack.prod.js",
"lint": "eslint src",
"analyze": "webpack-bundle-analyzer ./dist/bundle-report.json --default-sizes gzip"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ffmpeg/core": "^0.10.0",
"@ffmpeg/ffmpeg": "^0.10.1",
"@googlemaps/react-wrapper": "^1.1.35",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query": "^5.0.5",
"axios": "^1.5.1",
"dotenv": "^16.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-rnd": "^10.4.1",
"react-player": "^2.13.0",
"react-router-dom": "^6.17.0",
"recoil": "^0.7.7",
"styled-components": "^6.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/google.maps": "^3.54.4",
"@types/react": "^18.2.30",
"@types/react-dom": "^18.2.14",
"@types/styled-components": "^5.1.29",
"@types/uuid": "^9.0.6",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"dotenv-webpack": "^8.0.1",
"esbuild-loader": "^4.0.2",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"html-webpack-plugin": "^5.5.3",
"msw": "^2.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"msw": {
"workerDirectory": "public"
}
}