-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
58 lines (54 loc) · 1.33 KB
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
{
"name": "mixgolem-server",
"version": "1.0.0",
"description": "mixgolem-server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon --exec babel-node index.js",
"start:dist": "webpack --mode production & node ./dist/main.js",
"start": "nodemon --exec babel-node index.js"
},
"author": "Mangesh Ghadigaonkar",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/node": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"nodemon": "^2.0.22"
},
"dependencies": {
"aws-sdk": "^2.1672.0",
"axios": "^1.7.4",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"class-validator": "^0.14.1",
"connect-session-sequelize": "^7.0.1",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-handlebars": "^5.1.0",
"express-session": "^1.18.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"mysql2": "^2.1.0",
"nodemailer": "^6.9.14",
"passport-google-oauth20": "^2.0.0",
"path": "^0.12.7",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"sequelize": "^6.3.4",
"validator": "^13.1.1",
"webpack-node-externals": "^3.0.0"
},
"babel": {
"presets": [
"@babel/env"
]
}
}