-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 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
59
{
"name": "todosimple-api",
"version": "1.0.0",
"description": "Node.js Rest API with Express, Sequelize and MySQL.",
"author": "Lucas Ângelo Oliveira Martins Rocha (https://lucasangelo.com/)",
"main": "index.js",
"type": "module",
"scripts": {
"lint:check": "npx eslint --ext .js ./",
"lint:fix": "npx eslint --fix --ext .js ./",
"test": "echo \"Running all tests\"",
"start": "node index.js",
"start:dev": "nodemon -L index.js"
},
"keywords": [
"nodejs",
"express",
"restful",
"api",
"sequelize",
"yup",
"dotenv",
"editorconfig",
"mysql"
],
"license": "CC-BY-4.0",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.1.2",
"sequelize": "^6.29.0",
"yup": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.4"
},
"homepage": "https://github.com/ICEI-PUC-Minas-PPLES-TI/PLF-ES-2023-1-MON-CursoNodeJS",
"bugs": "https://github.com/ICEI-PUC-Minas-PPLES-TI/PLF-ES-2023-1-MON-CursoNodeJS/issues",
"repository": {
"type": "git",
"url": "https://github.com/ICEI-PUC-Minas-PPLES-TI/PLF-ES-2023-1-MON-CursoNodeJS.git"
},
"contributors": [
{
"name": "Lucas Ângelo Oliveira Martins Rocha",
"email": "laomrocha@sga.pucminas.br",
"url": "https://lucasangelo.com/"
}
]
}