-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.39 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
{
"name": "@cogup/fastapi",
"version": "0.14.4",
"description": "FastAPI is a powerful library that simplifies the creation of RESTful APIs using Fastify and Sequelize. It allows you to define your database tables and API routes in a JSON file, making the development process faster and more efficient.",
"main": "dist/src/index.js",
"scripts": {
"test": "jest --runInBand --detectOpenHandles --config=jest.config.js",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write ./src",
"build": "tsc"
},
"author": "Philippe Assis <philippe.assis@cogup.com>",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^8.4.1",
"fastify": "4.17.0",
"json-schema": "^0.4.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.35.2"
},
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/json-schema": "^7.0.14",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"prettier": "^2.8.8",
"sqlite3": "^5.1.6",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"jest": {
"testEnvironment": "node"
}
}