-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 851 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 851 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "servidor.js",
"engines": {
"node": "16.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"migrate-mysql": "knex migrate:latest --knexfile src/db/mysql.js",
"migrate-sqlite": "knex migrate:latest --knexfile src/db/sqlite.js",
"seed": "knex seed:run --knexfile src/db/mysql.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-handlebars": "^6.0.2",
"knex": "^0.95.15",
"mysql": "^2.18.1",
"nodemon": "^2.0.15",
"pug": "^3.0.2",
"socket.io": "^4.4.1",
"sqlite3": "^5.0.2"
},
"nodemonConfig": {
"ignore": [
"productos.json"
]
}
}