-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "fastify-ts-boilerplate",
"version": "0.0.1",
"description": "Boilerplate for HTTP REST applications powered by Fastify, using TypeScript and Node",
"main": "build/index.js",
"type": "module",
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoSheikh/fastify-ts-boilerplate.git"
},
"author": "Mohammad Sheikh",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/MoSheikh/fastify-ts-boilerplate/issues"
},
"homepage": "https://github.com/MoSheikh/fastify-ts-boilerplate#readme",
"dependencies": {
"dotenv": "^10.0.0",
"fastify": "^3.18.0",
"fastify-plugin": "^3.0.0",
"pino-pretty": "^5.1.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"husky": "^6.0.0",
"jest": "^27.0.5",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}