-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 865 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 865 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
{
"name": "api-restaurant",
"version": "1.0.0",
"description": "API for a restaurant management system.",
"main": "server.ts",
"author": "Diego Cunha",
"scripts": {
"dev": "tsx watch src/server.ts",
"knex": "node --import tsx ./node_modules/.bin/knex"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diegodevtech/API-restaurant.git"
},
"keywords": [],
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/diegodevtech/API-restaurant/issues"
},
"homepage": "https://github.com/diegodevtech/API-restaurant#readme",
"dependencies": {
"express": "^4.19.2",
"knex": "^3.1.0",
"sqlite3": "^5.1.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.14.12",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
}
}