-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "desafio",
"version": "1.0.0",
"description": "Desafio de API da Driva",
"main": "src/server.ts",
"author": "Matheus Rocha Jacks <https://github.com/Jackzinho>",
"repository": "https://github.com/Jackzinho/desafio-driva",
"scripts": {
"start": "tsc && node -r module-alias/register dist/server.js",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --rs src/server.ts",
"build": "tsc",
"lint": "eslint src/** --fix --quiet"
},
"_moduleAliases": {
"@": "dist"
},
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.4.12",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"prettier": "^2.3.2",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"module-alias": "^2.2.2",
"node-fetch": "^2.6.1"
}
}