-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
765 lines (53 loc) · 2.1 KB
/
package.json
File metadata and controls
765 lines (53 loc) · 2.1 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
{
"name": "vino-server",
"version": "1.0.0",
"description": "",
"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": "node main.js",
"build": "webpack --mode production"
},
"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",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"axios": "^1.7.3",
"babel-loader": "^9.1.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0",
"class-validator": "^0.14.1",
"connect-session-sequelize": "^7.0.1",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"csv-parser": "^3.0.0",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-handlebars": "^5.1.0",
"express-session": "^1.18.0",
"fs": "^0.0.1-security",
"http-status-codes": "^2.3.0",
"mysql2": "^2.1.0",
"node-schedule": "^2.1.1",
"openai": "^4.55.4",
"sequelize": "^6.3.4",
"validator": "^13.1.1"
},
"babel": {
"presets": [
"@babel/env"
]
}
}