-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 773 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 773 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
{
"name": "diet-api-nodejs",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx watch src/server.ts",
"knex": "node --import tsx ./node_modules/knex/bin/cli.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@types/cookie": "^0.6.0",
"@types/knex": "^0.15.2",
"@types/node": "^22.15.30",
"eslint": "^8.57.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"dotenv": "^16.5.0",
"fastify": "^5.3.3",
"knex": "^3.1.0",
"sqlite3": "^5.1.7",
"zod": "^3.25.51"
}
}