-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 854 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 854 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
37
{
"name": "notes",
"version": "1.1.1",
"description": "Uma API para anotações feita em JavaScript e SQLite.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon ./src/main/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielAraldiEDU/notes.git"
},
"keywords": [
"Notes",
"API"
],
"author": "Daniel Sansão Araldi e Arthur Moser",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanielAraldiEDU/notes/issues"
},
"homepage": "https://github.com/DanielAraldiEDU/notes#readme",
"dependencies": {
"fastify": "^4.24.3",
"nodemon": "^3.0.1",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.6",
"typeorm": "^0.3.17"
},
"engines": {
"node": ">=16.x"
},
"devDependencies": {
"git-commit-msg-linter": "^5.0.4"
}
}