-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 995 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
34
{
"name": "http-module",
"version": ".0.0",
"description": "Tentando entender como que funciona a mágica do Express",
"main": "index.js",
"scripts": {
"start": "ts-node src/app.ts",
"test": "jest --coverage --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GustavoGomesDias/http-module.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GustavoGomesDias/http-module/issues"
},
"homepage": "https://github.com/GustavoGomesDias/http-module#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.0.6",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}