-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1011 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": "rentalx",
"version": "1.0.0",
"main": "index.js",
"author": "Jonas Rafael de Lima <jonasrafael16@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"eslint": "eslint --ext .ts src --fix"
},
"dependencies": {
"@types/express": "^4.17.17",
"@types/uuid": "^9.0.1",
"express": "^4.18.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "8.0.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-n": "15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "6.0.0",
"prettier": "^2.8.7",
"ts-node-dev": "^2.0.0",
"typescript": "*"
}
}