This repository has been archived by the owner on Sep 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.55 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
69
70
71
72
73
74
75
76
77
78
79
{
"private": true,
"name": "easycarros",
"version": "1.0.0",
"description": "Tudo o que seu automóvel precisa, sem você sair de casa.",
"main": "index.js",
"scripts": {
"lint": "eslint */**/*.{js,ts} --quiet --fix",
"build": "rimraf build && tsc",
"start": "node -r dotenv-defaults/config build",
"start:dev": "tsnd -r dotenv-defaults/config --respawn src",
"cli:typeorm": "ts-node node_modules/typeorm/cli.js -f src/database/config",
"cli:seeding": "ts-node node_modules/typeorm-seeding/dist/cli.js -n src/database/config",
"migration:gen": "pnpm cli:typeorm -- migration:generate -n",
"migration:run": "pnpm cli:typeorm -- migration:run",
"migration:rev": "pnpm cli:typeorm -- migration:revert",
"schema:drop": "pnpm cli:typeorm -- schema:drop",
"schema:sync": "pnpm cli:typeorm -- schema:sync",
"schema:log": "pnpm cli:typeorm -- schema:log",
"seed:run": "pnpm cli:seeding -- seed",
"seed:config": "pnpm cli:seeding -- config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calmonr/easycarros.git"
},
"author": "Calmon Ribeiro <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/calmonr/easycarros/issues"
},
"homepage": "https://github.com/calmonr/easycarros#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"argon2": "^0.27.0",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.1",
"consola": "^2.15.0",
"cors": "^2.8.5",
"dotenv-defaults": "^2.0.1",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"geojson": "^0.5.0",
"jsonwebtoken": "^8.5.1",
"opencage-api-client": "^0.7.1",
"pg": "^8.3.3",
"reflect-metadata": "^0.1.13",
"response-time": "^2.3.2",
"typedi": "^0.8.0",
"typeorm": "^0.2.25",
"typeorm-seeding": "^1.6.1",
"typeorm-typedi-extensions": "^0.2.3"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/express-jwt": "^0.0.42",
"@types/geojson": "^7946.0.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.6.1",
"@types/response-time": "^2.3.4",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.61",
"typescript": "^4.0.2"
}
}