-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.59 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "api",
"private": true,
"version": "1.0.0",
"description": "Srvice Api",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"posttest": "echo Srvice API passed all tests 🎉",
"build": "tsc -p tsconfig.json",
"dev": "ts-node-dev --transpileOnly src/index.ts",
"start": "node ./built/index.js",
"prod": "tsc -p tsconfig.json && node ./built/index.js",
"debug": "tsc && node --inspect ./built/index.js",
"lint": "eslint src/**/*.ts --color --quiet",
"postlint": "echo No lint errors! 🎉",
"gen": "node mock/CLIGen.js",
"postgen": "echo Srvice Mockgen tool ran successfully 🎉",
"prettier": "prettier --config \"./.prettierrc\" --check \"./src/**/*.{ts,json}\"",
"postprettier": "echo No formatting errors! 🎉",
"autofix": "prettier --config \"./.prettierrc\" \"./src/**/*.{ts,json}\" --write ; eslint ./src/**/*.ts --color --quiet --fix"
},
"nyc": {
"all": true,
"include": [
"src/*"
],
"exclude": [
"src/models/*",
"src/routes/*",
"src/values/*"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^3.0.2",
"@pusher/chatkit-server": "^2.1.0",
"@types/multer": "^1.4.2",
"amazon-cognito-identity-js": "^2.0.6",
"awilix": "^4.2.5",
"aws-sdk": "^2.344.0",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"compression": "^1.7.4",
"cors": "^2.8.4",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"express-pino-logger": "^4.0.0",
"faker": "^4.1.0",
"fs": "0.0.1-security",
"helmet": "^3.21.2",
"jade": "^1.11.0",
"jsonwebtoken": "^8.3.0",
"jwks-rsa": "^1.7.0",
"moment": "^2.24.0",
"mongodb": "^3.3.2",
"mongodb-memory-server": "^6.4.1",
"mongoose": "^5.6.4",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"node-fetch": "^2.6.1",
"path": "^0.12.7",
"sharp": "^0.22.1",
"sinon": "^8.0.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/express-pino-logger": "^4.0.2",
"@types/faker": "^4.1.10",
"@types/glob": "^7.1.1",
"@types/helmet": "0.0.45",
"@types/jest": "^25.1.4",
"@types/mongodb-memory-server": "^2.3.0",
"@types/mongoose": "^5.7.6",
"@types/morgan": "^1.9.0",
"@types/node": "^13.9.1",
"@types/node-fetch": "^2.5.5",
"@types/uuid": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"babel-eslint": "^8.2.6",
"chalk": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"inquirer": "^7.0.1",
"jest": "^25.1.0",
"json-loader": "^0.5.7",
"nyc": "^14.1.1",
"pm2": "^4.5.4",
"prettier": "1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"prettier": {
"arrowParens": "always",
"singleQuote": false,
"bracketSpacing": true,
"trailingComma": "all",
"printWidth": 120,
"jsxBracketSameLine": false,
"overrides": [
{
"files": "*.json",
"options": {
"parser": "json"
}
}
]
}
}