-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.19 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.19 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": "ecommerce",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
"@sendgrid/mail": "^8.1.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"ajv": "^8.17.1",
"ajv-keywords": "^5.1.0",
"axios": "0.24.0",
"bcryptjs": "^3.0.2",
"bootstrap": "^5.2.1",
"chartist": "0.10.1",
"classnames": "2.3.1",
"cloudinary": "^2.4.0",
"coin-address-validator": "1.0.4-1",
"concurrently": "^5.3.0",
"cookie-parser": "^1.4.6",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"ethers": "^5.8.0",
"express": "^4.17.1",
"express-fileupload": "^1.5.1",
"express-validator": "^6.8.1",
"font-awesome": "^4.7.0",
"history": "5.0.0",
"js-sha3": "0.8.0",
"jsonwebtoken": "^8.5.1",
"lint": "^1.1.2",
"mongoose": "^5.11.8",
"mongoose-url-slugs": "^1.0.2",
"nth-check": "^2.1.1",
"paytmchecksum": "^1.5.1",
"perfect-scrollbar": "1.5.1",
"prop-types": "15.7.2",
"react": "^18.2.0",
"react-chartist": "0.14.4",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.3.5",
"react-hot-toast": "^2.4.1",
"react-loading-skeleton": "^3.1.0",
"react-material-ui-carousel": "^3.4.2",
"react-redux": "^8.0.2",
"react-router-dom": "^6.4.0",
"react-scripts": "^5.0.1",
"reactstrap": "^9.2.2",
"redux": "^4.2.0",
"stripe": "^13.11.0",
"web-vitals": "^2.1.4",
"web3": "^1.3.3"
},
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "node ./api/server.js",
"client": "react-scripts --openssl-legacy-provider start",
"build": "react-scripts --openssl-legacy-provider build",
"test": "react-scripts eject",
"eject": "react-scripts eject"
},
"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"
]
}
}