-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 856 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
{
"name": "verbs",
"version": "1.0.0",
"main": "index.js",
"author": "Edson Cabral Junior <[email protected]>",
"license": "MIT",
"scripts": {
"start:dev": "tsnd --transpile-only --ignore-watch node_modules --respawn src/server.ts"
},
"dependencies": {
"fastify": "^3.18.0",
"fastify-swagger": "^4.7.0",
"mongodb": "^3.6.9",
"node": "14.15",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.5.0",
"typeorm": "^0.2.34"
},
"devDependencies": {
"@types/node": "^15.12.3",
"@types/reflect-metadata": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.4"
}
}