This repository has been archived by the owner on Jun 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.13 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
65
66
67
68
{
"name": "oncoto",
"version": "0.0.1",
"description": "Jogo de geolocalização",
"repository": "https://github.com/magujun/codeStation-Hackathon_oncoto",
"author": "Equipe Sanchéz, Smith & Co.",
"email": "[email protected]",
"license": "MIT",
"private": true,
"scripts": {
"dev": "tsnd -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules --respawn --notify src/shared/infra/http/server.ts",
"docker": "docker compose up -d",
"start": "npm run docker && sleep 5 && npm run typeorm:migration && npm run dev",
"docker:stop": "docker compose stop",
"typeorm": "tsnd -r --notify tsconfig-paths/register ./node_modules/typeorm/cli",
"typeorm:migration": "yarn typeorm migration:run ",
"test": "NODE_ENV=test jest -i --verbose --detectOpenHandles --forceExit -runInBand"
},
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.4.0",
"cors": "^2.8.5",
"dayjs": "^1.10.4",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"mime": "^2.5.2",
"multer": "^1.4.2",
"parse": "^3.1.0",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.1.6",
"tsyringe": "^4.5.0",
"typeorm": "^0.2.31",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.22",
"@types/mime": "^2.0.3",
"@types/multer": "^1.4.5",
"@types/prettier": "^2.2.3",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"node-notifier": "^10.0.0",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
}
}