-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
78 lines (78 loc) · 2 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
{
"name": "do-next",
"version": "1.0.0",
"description": "full stack MERN e-commerce app",
"keywords": [
"react",
"express",
"mongodb",
"nodejs",
"e-commerce"
],
"homepage": "https://github.com/g1st/do-next",
"author": "Gintaras Stankus, <[email protected]>",
"main": "index.js",
"bugs": {
"url": "https://github.com/g1st/do-next/issues"
},
"license": "MIT",
"engines": {
"node": "16.13.0",
"npm": ">=8.0.0"
},
"scripts": {
"start": "NODE_ENV=production node server.js",
"build": "next build",
"lint": "next lint",
"dev": "node server.js"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@stripe/stripe-js": "^1.22.0",
"aws-sdk": "^2.1058.0",
"axios": "^0.24.0",
"babel-plugin-import": "^1.13.3",
"body-parser": "^1.19.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eslint-config-next": "^12.0.8",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^9.0.0",
"js-cookie": "^3.0.1",
"mjml": "^4.11.0",
"mongoose": "^5.13.14",
"multer": "^1.4.4",
"next": "^12.0.8",
"next-compose-plugins": "^2.2.1",
"next-optimized-images": "^2.6.2",
"nodemailer": "^6.7.2",
"prop-types": "^15.8.1",
"pure-react-carousel": "^1.27.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-image-gallery": "^1.2.7",
"react-intersection-observer": "^8.33.1",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"sharp": "^0.29.3",
"sitemap": "^7.1.0",
"slugify": "^1.6.5",
"stripe": "^8.197.0",
"styled-components": "^5.3.3",
"zlib": "^1.0.5"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"redux-devtools": "^3.7.0"
}
}