This repository was archived by the owner on Mar 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.97 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.97 KB
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
83
84
85
86
87
88
{
"name": "back-end",
"version": "1.10.3",
"main": "index.js",
"repository": "git@github.com:vainapp/back-end.git",
"author": "Vain",
"license": "MIT",
"scripts": {
"server:dev": "cross-env NODE_ENV=development nodemon --ignore scripts/ --inspect src/shared/infra/http/index.js",
"server:staging": "npm run build && cross-env NODE_ENV=staging node dist/shared/infra/http/index.js",
"server:production": "npm run build && cross-env NODE_ENV=production node dist/shared/infra/http/index.js",
"queue:dev": "cross-env NODE_ENV=development nodemon --ignore scripts/ --inspect src/shared/infra/http/queue.js",
"queue:staging": "npm run build && cross-env NODE_ENV=staging node dist/shared/infra/http/queue.js",
"queue:production": "npm run build && cross-env NODE_ENV=production node dist/shared/infra/http/queue.js",
"build": "gulp",
"test:autocannon": "npx autocannon -c 500 -d 30 --workers 10 --renderStatusCodes --latency --warmup [ -c 1 -d 2 ] localhost:3333/health",
"pretest": "cross-env NODE_ENV=test sequelize db:migrate",
"test": "cross-env NODE_ENV=test jest --coverage --detectOpenHandles --forceExit",
"posttest": "cross-env NODE_ENV=test sequelize db:migrate:undo:all",
"madge": "madge --circular ./src",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"npm run madge",
"npm run lint:fix"
]
},
"dependencies": {
"@sentry/node": "6.7.2",
"@sentry/tracing": "6.7.2",
"aws-sdk": "2.1129.0",
"bcrypt": "5.0.1",
"bee-queue": "1.5.0",
"cors": "2.8.5",
"dotenv": "10.0.0",
"express": "4.17.3",
"express-async-errors": "3.1.1",
"express-basic-auth": "1.2.1",
"express-rate-limit": "6.7.0",
"ioredis": "4.27.6",
"joi": "17.6.0",
"jsonwebtoken": "9.0.0",
"lodash": "4.17.21",
"morgan": "1.10.0",
"multer": "1.4.5-lts.1",
"multer-s3": "2.10.0",
"pg": "8.6.0",
"pg-hstore": "2.3.4",
"sequelize": "6.28.0",
"stripe": "11.5.0",
"swagger-ui-express": "4.6.0",
"uuid": "8.3.2",
"youch": "2.2.2"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@faker-js/faker": "6.3.1",
"@sucrase/jest-plugin": "2.2.1",
"@types/jest": "27.5.0",
"autocannon": "7.9.0",
"cross-env": "7.0.3",
"eslint": "7.29.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "3.4.0",
"factory-girl": "5.0.4",
"gulp": "4.0.2",
"gulp-cli": "2.3.0",
"husky": "8.0.3",
"jest": "28.1.0",
"lint-staged": "13.0.3",
"madge": "5.0.1",
"nodemon": "2.0.7",
"prettier": "2.3.1",
"sequelize-cli": "6.2.0",
"sucrase": "3.19.0",
"supertest": "6.2.3"
}
}