-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 729 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 729 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
{
"name": "simple-todo-server",
"version": "1.0.0",
"description": "TUES simple TODO server for educational perposes",
"main": "src/index.js",
"engines": {
"node": ">=14.19.1"
},
"scripts": {
"test": " ",
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbogdanov/simple-todo-server.git"
},
"keywords": [
"tues",
"simple",
"todo",
"server"
],
"author": "Bogdan Bogdanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/bbogdanov/simple-todo-server/issues"
},
"homepage": "https://github.com/bbogdanov/simple-todo-server#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2"
}
}