-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
73 lines (73 loc) · 2.33 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
{
"name": "ecommerce",
"version": "1.0.0",
"description": "eShop: A MERN stack eCommerce Project made with love by Shubham Dutta",
"main": "server.js",
"type": "module",
"engines": {
"node": "14.15.4",
"npm": "6.14.10"
},
"scripts": {
"start": "node server",
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"prod_start": "NODE_ENV=production CLOUD=AWS npm run server",
"data:import": "node backened/seeders",
"data:destroy": "node backened/seeders -d",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write */**/*.{js,jsx,ts,tsx}",
"check-format": "prettier --check */**/*.{js,jsx,ts,tsx}",
"check-lint": "eslint . --ext js --ext jsx",
"test-all": "npm run check-format && npm run check-lint && npm run build",
"prepare": "husky install",
"success-message": "echo \n\n\n🚀 Everything is awesome. 🚀\n\n🖥️ Auto checking completed, ready to deploy.🖥️\n\n☁️ Run: git push ☁️ \n\n if you just want to push add --no-verify",
"pre-commit": "next lint && npm run format "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shubhamdutta2000/ECommerceApp.git"
},
"keywords": [
"eShop"
],
"author": "Shubham Dutta",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shubhamdutta2000/ECommerceApp/issues"
},
"homepage": "https://github.com/Shubhamdutta2000/ECommerceApp#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"clsx": "^1.1.1",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.8",
"multer": "^1.4.2",
"nodemailer": "^6.5.0",
"path": "^0.12.7",
"redis": "^3.1.1",
"stripe": "^8.134.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"concurrently": "^5.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.6",
"prettier": "^2.4.1",
"standard": "^16.0.4"
}
}