-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.06 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
{
"name": "ifrc-vconf-api",
"description": "",
"version": "1.1.0",
"private": true,
"repository": "",
"author": "",
"license": "MIT",
"scripts": {
"test": "jest --runInBand",
"coverage": "jest --runInBand --coverage",
"build": "tsc",
"lint": "tsc --noEmit",
"prettier": "prettier --write '**/*.{js,json,css,md,ts,tsx}'",
"preversion": "npm run test -s && npm run build",
"postversion": "git push --follow-tags",
"dev": "node -r ts-node/register -r dotenv/config src/cli.ts",
"debug": "node --inspect-brk -r ts-node/register -r dotenv/config src/cli.ts",
"readme-toc": "md-toc -i",
"serve": "npm run -s dev -- serve --migrate"
},
"keywords": [],
"engines": {
"node": ">=8"
},
"dependencies": {
"@godaddy/terminus": "^4.4.1",
"@robb_j/chowchow": "^0.7.2",
"@sendgrid/mail": "^7.2.0",
"aws-sdk": "^2.745.0",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dot-prop": "^5.2.0",
"dotenv": "^8.2.0",
"email-regex": "^4.0.0",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"graphql": "^15.3.0",
"gray-matter": "^4.0.2",
"haversine-distance": "^1.2.1",
"i18n-iso-countries": "^6.0.0",
"ics": "^2.24.0",
"ioredis": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"morgan": "^1.10.0",
"ms": "^2.1.2",
"mustache": "^4.0.1",
"pg": "^8.3.0",
"redis": "^3.0.2",
"rimraf": "^3.0.2",
"socket.io": "^2.3.0",
"socket.io-redis": "^5.4.0",
"superstruct": "^0.10.12",
"valid-env": "^1.0.1",
"waveheader": "0.0.2",
"yaml": "^1.10.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@robb_j/md-toc": "^0.3.1",
"@robb_j/mockchow": "^0.1.2",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.6",
"@types/fs-extra": "^9.0.1",
"@types/ioredis": "^4.16.7",
"@types/jest": "^26.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.161",
"@types/morgan": "^1.9.1",
"@types/mustache": "^4.0.1",
"@types/node": "^14.0.13",
"@types/pg": "^7.14.4",
"@types/redis": "^2.8.27",
"@types/rimraf": "^3.0.0",
"@types/socket.io": "^2.1.8",
"@types/socket.io-client": "^1.4.33",
"@types/socket.io-redis": "^1.0.26",
"@types/supertest": "^2.0.10",
"@types/yargs": "^15.0.5",
"base64id": "^2.0.0",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"yorkie": "^2.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx}": [
"prettier --write",
"git add"
]
},
"main": "dist/index.js",
"types": "dist/index.d.js"
}