-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 853 Bytes
/
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
{
"name": "node-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Daniel Costa",
"url": "https://github.com/danicunhac"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"lint": "tsc && eslint \"src/**/*.{js,ts}\" --quiet --fix"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tsx": "^3.12.7",
"typescript": "^4.7.4"
},
"dependencies": {
"fastify": "^4.17.0",
"uuid": "^8.3.2"
}
}