-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "fastify-ts-api-boilerplate",
"version": "1.0.0",
"description": "Template for API using fastify",
"main": "build/main.js",
"scripts": {
"test": "jest",
"test:watch": "npm run test -- --watch",
"start": "NODE_PATH=./build node build/server.js",
"build": "tsc -p .",
"dev": "nodemon src/server.ts",
"lint": "eslint . --ext .js --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prettier-fix": "prettier --write \"src/**/*.ts\"",
"code:check": "lint:fix; npm run prettier-fix"
},
"author": "Ramses Banco (@ramBlanco)",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/i18n": "^0.13.6",
"@types/jest": "^29.5.0",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^5.0.6",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.3"
},
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/awilix": "^5.1.0",
"@fastify/jwt": "^8.0.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/swagger": "^8.14.0",
"@types/aws-sdk": "^2.7.0",
"awilix": "^10.0.1",
"aws-sdk": "^2.1333.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"fastify": "^4.26.2",
"fastify-plugin": "^4.5.1",
"fluent-json-schema": "^4.2.1",
"i18n": "^0.15.1",
"morgan": "^1.10.0",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.29.3"
}
}