-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "fastify-ts-di",
"version": "1.0.0",
"description": "Base snapshot to start new project",
"main": "dist/main.js",
"private": true,
"type": "commonjs",
"scripts": {
"start": "node .",
"dev": "nodemon",
"build": "tsc",
"dev:inspect": "nodemon -e ts,json --exec node --inspect=localhost:9229 -r ts-node/register src/main.ts",
"lint": "eslint ./src/**",
"lint:fix": "eslint ./src/** --fix"
},
"keywords": [],
"author": "br4instormer",
"license": "ISC",
"engines": {
"node": "^18.16"
},
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "^8.2.1",
"@fastify/jwt": "^6.7.1",
"bcryptjs": "^2.4.3",
"dotenv-flow": "^3.2.0",
"fastify": "^4.15.0",
"inversify": "^6.0.1",
"reflect-metadata": "^0.1.13",
"tslog": "^4.8.2"
},
"devDependencies": {
"@types/dotenv-flow": "^3.2.0",
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}