-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.18 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
{
"name": "vitrine-infantil-shop",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./build/src",
"test": "jest",
"start": "node build/src/shared/infra/http/server.js",
"queue": "node build/src/shared/infra/http/queue.js",
"dev:server": "ts-node-dev -r tsconfig-paths/register --inspect --ignore-watch node_modules --transpile-only --no-notify src/shared/infra/http/server.ts",
"dev:queue": "ts-node-dev -r tsconfig-paths/register --ignore-watch node_modules --transpile-only --no-notify src/shared/infra/http/queue.ts",
"typeorm": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bull": "^3.16.0",
"bull-board": "^0.9.0",
"celebrate": "^12.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.3.0",
"reflect-metadata": "^0.1.13",
"rss-parser": "^3.9.0",
"socket.io": "^2.3.0",
"socketio-jwt": "^4.6.2",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.56",
"tsconfig-paths": "^3.9.0",
"tsyringe": "^4.3.0",
"typeorm": "^0.2.25",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bull": "^3.14.0",
"@types/bull-board": "^0.6.0",
"@types/cors": "^2.8.7",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.10",
"@types/jsonwebtoken": "^8.5.0",
"@types/socket.io": "^2.1.11",
"@types/socketio-jwt": "^0.2.0",
"@types/uuid": "^8.3.0",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"ts-jest": "^26.2.0",
"tscpaths": "^0.0.9",
"typescript": "^3.9.7"
}
}