forked from emporix/b2b-showcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.51 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
{
"name": "emporix_storefront",
"version": "0.1.0",
"private": true,
"dependencies": {
"@algolia/autocomplete-js": "^1.7.4",
"@auth0/auth0-react": "^2.2.3",
"@material-ui/core": "^4.12.4",
"@mui/material": "^5.10.4",
"@reduxjs/toolkit": "^1.8.5",
"@sentry/react": "^7.77.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"algoliasearch": "^4.14.3",
"axios": "^0.28.0",
"classnames": "^2.3.1",
"contentful": "^9.3.2",
"currency-symbol-map": "^5.1.0",
"env-cmd": "^10.1.0",
"history": "^5.3.0",
"html-react-parser": "^3.0.4",
"react": "^18.2.0",
"react-animated-slider": "^1.1.4",
"react-async": "^10.0.1",
"react-dom": "^18.2.0",
"react-dropdown-select": "^4.9.0",
"react-icons": "^4.4.0",
"react-phone-input-material-ui": "^2.17.4",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"react-scroll": "^1.8.7",
"react-select": "^5.4.0",
"react-simple-star-rating": "^4.0.5",
"react-slick": "^0.29.0",
"react-stars": "^2.2.5",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1",
"slick-carousel": "^1.8.1"
},
"resolutions": {
"nth-check": "^2.0.1",
"@babel/traverse": "7.23.2"
},
"scripts": {
"start": "react-scripts start",
"start:prod": "env-cmd -f .env.prod npm run-script start",
"start:stage": "env-cmd -f .env.stage npm run-script start",
"start:develop": "env-cmd -f .env.develop npm run-script start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:prod": "env-cmd -f .env.prod react-scripts build",
"build:stage": "env-cmd -f .env.stage react-scripts build",
"build:develop": "env-cmd -f .env.develop react-scripts build",
"deploy:auth0": "npm run build && firebase deploy --only hosting:b2b-showcase-auth0 --config firebase.json --project b2b-showcase-stage"
},
"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"
]
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"postcss": "^8.4.31",
"prettier": "2.8.2",
"redux-devtools-extension": "^2.13.9",
"tailwindcss": "^3.1.8",
"tailwindcss-font-inter": "^3.0.1"
}
}