-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.09 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
{
"name": "jy-scrubs-platform",
"version": "1.0.0",
"description": "**JY Scrubs** is a fully functional e-commerce platform that serves customers by selling scrubs and offering medical consultation services. The store operates globally for scrubs with prices displayed in the user’s local currency, and the consultation service is available exclusively for customers in Nigeria.",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server",
"dev": "nodemon server",
"postinstall": "npm install pg",
"install-pg": "npm install pg",
"migrate": "npx sequelize-cli db:migrate",
"migrate:status": "npx sequelize-cli db:migrate:status",
"migrate:generate": "npx sequelize-cli migration:generate --name",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"migrate:undo:all": "npx sequelize-cli db:migrate:undo:all",
"seed:all": "npx sequelize-cli db:seed:all",
"migrate:prod": "set NODE_ENV=production && sequelize db:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nathius262/jy-scrubs-ecommerce.git"
},
"keywords": [
"e-commerce",
"jy-scrubs",
"online-store"
],
"author": "jy-scrubs",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nathius262/jy-scrubs-ecommerce/issues"
},
"homepage": "https://github.com/Nathius262/jy-scrubs-ecommerce#readme",
"dependencies": {
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"build": "^0.1.4",
"cloudinary": "^1.21.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-handlebars": "^8.0.1",
"express-session": "^1.18.0",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"mysql2": "^3.11.3",
"nodemailer": "^6.9.16",
"path": "^0.12.7",
"pg": "^8.13.1",
"sequelize": "^6.37.5",
"slugify": "^1.6.6"
},
"devDependencies": {
"@types/googlepay": "^0.7.6",
"nodemon": "^3.1.5",
"sequelize-cli": "^6.6.2",
"sqlite3": "^5.1.7"
}
}