-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.05 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "daily-diet-api",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=18"
},
"description": "API of the Daily Diet application, which will be responsible for the notes and reminders of the care we take with our free meals and diet",
"main": "index.js",
"scripts": {
"start": "pm2 start dist/server.cjs",
"build": "tsup src",
"dev": "tsx watch src/server.ts",
"knex": "node --no-warnings --loader tsx ./node_modules/.bin/knex",
"knexWin": "node --no-warnings --loader tsx ./node_modules/knex/bin/cli.js",
"lint": "eslint \"./src/**/*.ts\" -c .eslintrc.json --fix",
"prepare": "husky install",
"test": "vitest --reporter verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eddyyxxyy/daily-diet-api.git"
},
"keywords": [
"api",
"node",
"typescript",
"knex",
"jwt",
"fastify"
],
"author": "Edson Pimenta <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eddyyxxyy/daily-diet-api/issues"
},
"homepage": "https://github.com/eddyyxxyy/daily-diet-api#readme",
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@types/bcrypt": "^5.0.0",
"@types/node": "^20.8.6",
"@types/supertest": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"sqlite3": "^5.1.6",
"supertest": "^6.3.3",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@fastify/cookie": "^9.1.0",
"@fastify/cors": "^8.4.1",
"@fastify/helmet": "^11.1.1",
"@fastify/jwt": "^7.2.2",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"fastify": "^4.24.2",
"knex": "^3.0.1",
"pg": "^8.11.3",
"pm2": "^5.3.0",
"zod": "^3.22.4"
}
}