-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.62 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
80
81
82
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/cssoftwareengineering2animap/backend.git",
"author": "PoorlyDefinedBehaviour <brunotj2015@hotmail.com>",
"license": "MIT",
"scripts": {
"eslint:fix": "node_modules/.bin/eslint --fix . --ext ts",
"compose:dev": "docker-compose up -d",
"build": "node_modules/.bin/tsc",
"start": "node build/src/main",
"dev": "node_modules/.bin/nodemon --exec node_modules/.bin/ts-node --files -r dotenv/config src/main.ts --transpile-only",
"test": "NODE_ENV=test node_modules/.bin/jest --bail --runInBand --setupFiles --forceExit --detectOpenHandles --testTimeout=10000",
"cov": "node_modules/.bin/jest --coverage"
},
"dependencies": {
"bcrypt": "^5.0.0",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^5.1.0",
"faker-br": "^0.3.0",
"http-status-codes": "^2.1.2",
"ioredis": "^4.16.3",
"js-brasil": "^2.3.8",
"mailgun-js": "^0.22.0",
"moment": "^2.27.0",
"multer": "^1.4.2",
"pg": "^8.0.3",
"ramda": "^0.27.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"socket.io-redis": "^5.4.0",
"tsyringe": "^4.3.0",
"typeorm": "^0.2.24",
"uuid": "^8.3.0",
"yup": "^0.28.5"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.8",
"@types/cuid": "^1.3.1",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/faker": "^4.1.12",
"@types/http-status-codes": "^1.2.0",
"@types/ioredis": "^4.17.4",
"@types/jest": "^26.0.14",
"@types/mailgun-js": "^0.22.11",
"@types/moment": "^2.13.0",
"@types/multer": "^1.4.4",
"@types/node": "^14.6.4",
"@types/ramda": "^0.27.14",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.33",
"@types/socket.io-redis": "^1.0.26",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@types/yup": "^0.28.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.4.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.4",
"supertest": "^4.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^9.0.0",
"typescript": "^3.8.3"
}
}