forked from Fec4-Jupiter/webApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.59 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
{
"name": "jupiter-clothing",
"version": "1.0.0",
"description": "",
"author": "",
"engines": {
"node": ">=6.13.0"
},
"scripts": {
"build-prod": "webpack --mode production",
"build-stats": "webpack --json > stats.json",
"react-dev": "webpack --mode development --watch",
"server-dev": "nodemon server/index.js",
"test": "jest"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@mui/icons-material": "^5.6.1",
"@mui/material": "^5.6.1",
"async": "^3.2.3",
"axios": "^0.26.1",
"babel-plugin-macros": "^3.1.0",
"compression": "^1.7.4",
"css-loader": "^6.7.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"express-static-gzip": "^2.1.5",
"path": "^0.12.7",
"pm2": "^5.2.0",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-alice-carousel": "^2.5.1",
"react-dom": "^18.0.0",
"react-gallery-carousel": "^0.2.9",
"react-inner-image-zoom": "^3.0.0",
"react-rating": "^2.0.5",
"react-select": "^5.2.2",
"reactjs-popup": "^2.0.5",
"style-loader": "^3.3.1"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.0.4",
"babel-loader": "^8.2.4",
"compression-webpack-plugin": "^9.2.0",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-hackreactor": "https://github.com/reactorcore/eslint-config-hackreactor",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"file-loader": "^6.2.0",
"html-critical-webpack-plugin": "^2.1.0",
"imagemin-avif-webpack-plugin": "^0.0.1",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"regenerator-runtime": "^0.13.9",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(jpg|ico|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/fileMock.js"
}
}
}