-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.15 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "HystAPI",
"version": "1.0.0",
"description": "Open-source project to consultation of Brazilian APIs, formatting in the best visual way, as well as a better search.",
"main": "public/infra/http/server.js",
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir public --copy-files --no-copy-ignored",
"start": "node public/infra/http/server.js",
"dev": "tsnd --respawn --transpile-only --ignore-watch node_modules --exit-child --clear -r tsconfig-paths/register src/infra/http/server.ts",
"lint": "eslint src --ext ts,tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Masterr115/hyst-api.git"
},
"keywords": [],
"license": "MIT",
"author": "André Contiero <andre.contiero@yahoo.com.br>",
"bugs": {
"url": "https://github.com/Masterr115/hyst-api/issues"
},
"homepage": "https://github.com/Masterr115/hyst-api#readme",
"dependencies": {
"express-group-router": "^2.1.0",
"express-rate-limit": "^5.2.6",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^9.0.0",
"express": "^4.17.1",
"fs": "^0.0.1-security",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"ts-node": "^10.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.6",
"@types/express-rate-limit": "^5.1.3",
"@types/morgan": "^1.9.2",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"ts-node-dev": "^1.0.0-pre.49",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.5"
}
}