-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 903 Bytes
/
package.json
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
{
"name": "todo-backend-typescript",
"version": "0.1.0",
"description": "a TypeScript/Node.js/Express implementation of the Todo-Backend API spec",
"main": "app/server.js",
"scripts": {
"start": "node app/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/parambirs/todo-backend-typescript"
},
"bugs": {
"url": "https://github.com/parambirs/todo-backend-typescript/issues"
},
"homepage": "https://github.com/parambirs/todo-backend-typescript",
"keywords": [
"todo-backend",
"api",
"typescript"
],
"author": "Parambir Singh",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.2",
"db-migrate": "^0.11.14",
"express": "^4.18.2",
"pg": "^8.11.3"
},
"devDependencies": {
"db-migrate-pg": "^1.5.2",
"tsd": "^0.30.3",
"typescript": "^5.3.3"
},
"engines": {
"node": "21.1.0"
}
}