-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.33 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
{
"name": "alpha-tower",
"version": "1.0.0",
"description": "API Restful developed in Node JS to control sales proposals and clients",
"main": "server.ts",
"scripts": {
"localhost": "ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules src/shared/http/server.ts",
"test": "jest",
"test:silent": "jest --watchAll --silent",
"test:coverage": "jest --coverage --noStackTrace",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"database": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"database:run": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js migration:run",
"database:revert": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js migration:revert",
"database:sync": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js schema:sync"
},
"keywords": [
"API",
"Nodejs",
"TypeORM",
"Typescript"
],
"author": "Fernando Britto",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1161.0",
"bcryptjs": "^2.4.3",
"celebrate": "^15.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.29",
"typeorm-pagination": "^2.0.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.3",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.2.0",
"jest": "^26.1.0",
"prettier": "^2.7.1",
"supertest": "^6.1.3",
"ts-jest": "^26.1.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fernandobritto/Alpha-Tower.git"
},
"bugs": {
"url": "https://github.com/fernandobritto/Alpha-Tower/issues"
},
"homepage": "https://github.com/fernandobritto/Alpha-Tower#readme"
}