-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "web-blog",
"version": "1.0.0",
"type": "module",
"description": "Proyecto #2",
"main": "index.js",
"scripts": {
"babel-node": "babel-node --presets=@babel/preset-env",
"dev": "nodemon --exec npm run babel-node index.js",
"start": "node index.js"
},
"author": "Esteban Castañeda Blanco - C01795, Daniel Lizano Morales - C04285",
"license": "ISC",
"dependencies": {
"@supabase/storage-js": "^2.5.4",
"@supabase/supabase-js": "^2.38.4",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"path": "^0.12.7",
"pg": "^8.11.3",
"pug": "^3.0.2",
"sequelize": "^6.33.0",
"sharp": "^0.32.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/node": "^7.22.19",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"nodemon": "^3.0.1"
}
}