-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 746 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 746 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
{
"name": "url-shortener",
"version": "1.0.0",
"description": "Url Shortener",
"author": "Mauricio Urraco <mauriurraco@gmail.com>",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"migrate": "sequelize-cli db:migrate",
"migrate:undo": "sequelize-cli db:migrate:undo",
"test": "mocha"
},
"dependencies": {
"express": "^4.22.1",
"mysql2": "^3.9.8",
"sequelize": "^6.37.8"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^11.7.5",
"nodemon": "^3.1.9",
"sequelize-cli": "^6.6.2",
"supertest": "^7.1.0"
}
}