-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (75 loc) · 2.11 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
{
"name": "petshop-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"createAdmin": "nodemon --exec ./node_modules/.bin/babel-node ./src/createAdmin.js",
"start": "SET NODE_ENV=production && node ./dist/bundle.js",
"dev": "nodemon --exec ./src/server.js",
"build": "npx webpack --mode production --config webpack.config.js",
"cleanup": "rm -rf dist && rm -rf build",
"eslint:fix": "eslint --fix . --ext .js",
"lint": "eslint . --ext .js",
"prettier:fix": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.8",
"axios": "^1.6.8",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.3",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cloudinary": "^1.41.3",
"config": "^3.3.11",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"date-format": "^4.0.14",
"dateformat": "^5.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"express-session": "^1.17.3",
"fs": "^0.0.1-security",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"joi": "^17.11.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"mongoose": "^7.6.8",
"mongoose-autopopulate": "^1.1.0",
"mongoose-delete": "^1.0.1",
"mongoose-lean-virtuals": "^0.9.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"multiparty": "^4.2.3",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.12",
"nodemon": "^3.0.3",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pusher": "^5.2.0",
"qs": "^6.12.0",
"redis": "^4.6.13",
"slugify": "^1.6.6",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.10",
"ts-node": "^10.9.2",
"webpack-node-externals": "^3.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"webpack-cli": "^5.1.4"
}
}