-
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.34 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.34 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": "api-kairos",
"version": "1.0.0",
"description": "api kairos",
"main": "index.js",
"scripts": {
"dev": "DEBUG=app:* nodemon api/index",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "node api/index.js",
"migrate": "npx sequelize-cli db:migrate",
"seed": "npx sequelize-cli db:seed:all",
"migrate:reset": "npx sequelize-cli db:migrate:undo:all && npm run migrate && npm run seed",
"test": "cross-env NODE_ENV=test jest --coverage --testTimeout=50000",
"pretest": "cross-env NODE_ENV=test npm run migrate:reset"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/kairos6/api-kairos.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/kairos6/api-kairos/issues"
},
"homepage": "https://gitlab.com/kairos6/api-kairos#readme",
"dependencies": {
"@google-cloud/debug-agent": "^5.1.0",
"@google-cloud/storage": "^5.1.2",
"@hapi/boom": "^9.1.0",
"@hapi/joi": "^17.1.1",
"@sentry/node": "^5.19.0",
"axios": "^0.19.2",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dateformat": "^3.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.23.3",
"html-pdf": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.0",
"sequelize-cli": "^6.2.0",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"chalk": "^4.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"proxyquire": "^2.1.3",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"testResultsProcessor": "jest-sonar-reporter",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/store/migrations/",
"/store/models/",
"/store/seeders/"
]
}
}