-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.31 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.31 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
{
"name": "cronus-api",
"version": "1.0.0",
"description": "API for cronus",
"main": "dist/index.js",
"scripts": {
"prestart": "npm install",
"dev": "node_modules/typescript/bin/tsc && nodemon nodemon.js",
"start": "node_modules/typescript/bin/tsc && node nodemon.js",
"lint": "node_modules/.bin/tslint --project tsconfig.json",
"test": "NODE_ENV=testing node_modules/ts-mocha/bin/ts-mocha --paths tests/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git@bitbucket.org:rcmariano/cronus-api.git"
},
"author": "rainer@codingchiefs.com",
"keywords": [
"openapi"
],
"license": "MIT",
"private": true,
"dependencies": {
"@hapi/joi": "^16.1.8",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"compression": "^1.7.4",
"connect": "^3.2.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"express": "^4.17.1",
"express-json-views": "^0.2.0",
"express-openapi-validator": "^1.0.0",
"form-data": "^2.3.3",
"helmet": "^3.21.2",
"js-yaml": "^3.3.0",
"jsonwebtoken": "^8.5.1",
"jstoxml": "^1.5.0",
"module-alias": "^2.2.1",
"mongoose": "^5.7.13",
"mongoose-auto-increment": "^5.0.1",
"mysql2": "^2.0.2",
"ono": "^5.0.1",
"openapi-sampler": "^1.0.0-beta.15",
"swagger-express-middleware": "^2.0.2",
"swagger-tools": "^0.10.4",
"swagger-ui-express": "^4.1.1",
"typeorm": "^0.2.20",
"util": "^0.12.1",
"uuid": "^3.3.3",
"winston": "^3.2.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/mocha": "^5.2.7",
"debug": "~2.6.9",
"mocha": "^6.2.1",
"nock": "^11.4.0",
"nodemon": "^1.19.2",
"ts-mocha": "^6.0.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"eslintConfig": {
"env": {
"node": true
}
},
"_moduleAliases": {
"@app": "dist",
"@controllers": "dist/controllers",
"@resources": "dist/resources",
"@services": "dist/services",
"@models": "dist/models",
"@utils": "dist/utils",
"@validations": "dist/validations",
"@middlewares": "dist/middlewares"
}
}