-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·87 lines (87 loc) · 2.84 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
86
87
{
"name": "creativeduoshop",
"version": "1.0.0",
"description": "MERN shopping cart app",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node backend/server",
"server": "nodemon backend/server",
"client": "npm start --prefix frontend",
"tailwindwatch": "npx tailwindcss -i /frontend/src/tailwind.css -c /frontend/tailwind.config.js -o site/style.css --watch --no-map",
"buildtailwind": "npx tailwindcss -i /frontend/src/tailwind.css -c /frontend/tailwind.config.js -o site/style.css --minify --no-map",
"dev": "concurrently \"npm run client\" \"npm run server\" tailwindwatch",
"data:import": "node backend/seeder",
"data:destroy": "node backend/seeder -d",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "Brad Traversy",
"license": "MIT",
"dependencies": {
"@auth0/auth0-react": "^2.0.0",
"@easypost/api": "^5.8.0",
"@egjs/flicking-plugins": "^4.5.0",
"@egjs/react-flicking": "^4.10.5",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@headlessui/react": "^1.7.10",
"@heroicons/react": "^1.0.6",
"@popperjs/core": "^2.11.6",
"@reach/portal": "^0.17.0",
"@stripe/react-stripe-js": "^1.16.1",
"@stripe/stripe-js": "^1.46.0",
"axios": "^1.2.2",
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.30.0",
"colors": "^1.4.0",
"cookie-session": "^2.0.0",
"cookies": "^0.8.0",
"daisyui": "^2.50.1",
"dotenv": "^8.2.0",
"easypost": "^0.1.1",
"easyship": "^1.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-session": "^1.17.3",
"flowbite": "^1.6.3",
"http-proxy-middleware": "^2.0.6",
"https-browserify": "^1.0.0",
"img-comparison-slider": "^8.0.0",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"mailgun": "^0.5.0",
"mailgun-js": "^0.22.0",
"moment": "^2.29.4",
"mongoose": "^6.5.2",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^4.0.0",
"npm": "^9.2.0",
"os-browserify": "^0.3.0",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"preline": "^1.2.0",
"react-app-rewired": "^2.2.1",
"react-before-after-slider-component": "^1.1.6",
"react-compare-slider": "^2.2.0",
"react-flickity-component": "^3.6.2",
"react-popper": "^2.3.0",
"react-scripts": "^2.1.3",
"react-stripe-checkout": "^2.6.3",
"react-toastify": "^9.0.8",
"react-youtube": "^10.1.0",
"reactstrap": "^9.1.5",
"shippo": "^1.7.1",
"ssl-express-www": "^3.0.8",
"stripe": "^9.14.0",
"swiper": "^8.4.5",
"webpack": "^5.74.0"
},
"devDependencies": {
"autoprefixer": "^10.4.4",
"concurrently": "^5.3.0",
"nodemon": "^2.0.4",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.24"
}
}