-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
136 lines (136 loc) · 4.51 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
128
129
130
131
132
133
134
135
136
{
"name": "@origen/api",
"version": "1.0.0",
"private": true,
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"start:dev": "cross-env NODE_ENV=development nodemon --inspect=0.0.0.0:9229 --nolazy --config nodemon.json src/index.ts",
"start:dev:no-debug": "cross-env NODE_ENV=development nodemon --config nodemon.json src/index.ts",
"build:prod": "cross-env NODE_ENV=production babel --source-maps --extensions \".ts\" --out-dir dist src",
"download-graphql-schema": "apollo schema:download schema.json",
"predownload-graphql-schema": "yarn clean-graphql-schema",
"migrate": "postre migrate",
"migrate-all": "yarn migrate --all",
"create-migration": "postre create-migration",
"rollback-migration": "postre rollback",
"make-keys": "mkcert localhost api.local.origen.chat 127.0.0.1 ::1 0.0.0.0",
"premake-keys": "yarn clean-keys",
"postmake-keys": "mkdirp keys && mv localhost+4.pem keys/shared.crt && mv localhost+4-key.pem keys/shared.key",
"test": "cross-env NODE_ENV=test jest",
"test:ci": "yarn test --coverage",
"test:watch": "jest --onlyChanged --watch",
"prebuild": "yarn typecheck && yarn clean-dist",
"typecheck": "tsc",
"clean-dist": "rimraf dist",
"clean-keys": "rimraf keys/shared.key keys/shared.crt",
"clean-graphql-schema": "rimraf schema.json",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,ts}\""
},
"dependencies": {
"@google-cloud/storage": "2.5.0",
"@sentry/node": "4.6.6",
"@strattadb/environment": "6.2.0",
"ajv": "6.12.2",
"apollo-server-express": "2.13.0",
"bluebird": "3.7.2",
"body-parser": "1.19.0",
"bull": "3.14.0",
"chalk": "2.4.2",
"cors": "2.8.5",
"dataloader": "1.4.0",
"date-fns": "2.13.0",
"express": "4.17.1",
"graphql": "14.6.0",
"graphql-iso-date": "3.6.1",
"graphql-redis-subscriptions": "2.2.1",
"graphql-subscriptions": "1.1.0",
"graphql-type-json": "0.3.1",
"ioredis": "4.16.3",
"jsonwebtoken": "8.5.1",
"knex": "0.21.1",
"mailgun-js": "0.22.0",
"ms": "2.1.2",
"passport": "0.4.1",
"passport-google-oauth20": "2.0.0",
"passport-jwt": "4.0.0",
"pg": "7.18.2",
"ramda": "0.27.0",
"sharp": "0.25.2",
"stripe": "6.36.0",
"uuid": "3.4.0",
"web-push": "3.4.3",
"winston": "3.2.1"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
"@babel/node": "7.8.7",
"@babel/preset-env": "7.9.6",
"@babel/preset-typescript": "7.9.0",
"@babel/register": "7.9.0",
"@commitlint/cli": "7.6.1",
"@commitlint/config-conventional": "7.6.0",
"@commitlint/prompt-cli": "7.6.1",
"@commitlint/travis-cli": "7.6.1",
"@types/bluebird": "3.5.30",
"@types/bull": "3.12.2",
"@types/dotenv": "6.1.1",
"@types/graphql": "14.2.3",
"@types/graphql-iso-date": "3.3.3",
"@types/graphql-type-json": "0.3.2",
"@types/ioredis": "4.16.1",
"@types/jest": "24.9.1",
"@types/json-schema": "7.0.4",
"@types/jsonwebtoken": "8.3.9",
"@types/mailgun-js": "0.22.4",
"@types/ms": "0.7.31",
"@types/node": "10.17.21",
"@types/passport": "1.0.3",
"@types/passport-google-oauth": "1.0.41",
"@types/passport-jwt": "3.0.3",
"@types/ramda": "0.27.4",
"@types/sharp": "0.25.0",
"@types/stripe": "6.32.13",
"@types/uuid": "3.4.9",
"@types/web-push": "3.3.0",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"apollo": "2.27.4",
"babel-eslint": "10.1.0",
"babel-jest": "24.9.0",
"babel-plugin-dynamic-import-node": "2.3.3",
"codecov": "3.6.5",
"cross-env": "5.2.1",
"danger": "7.1.4",
"dotenv": "7.0.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-graphql": "3.1.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "22.21.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-ramda": "2.5.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-unicorn": "7.1.0",
"graphql": "14.6.0",
"husky": "1.3.1",
"jest": "24.9.0",
"lint-staged": "8.2.1",
"nodemon": "1.19.4",
"prettier": "1.19.1",
"prettier-eslint": "8.8.2",
"prettier-eslint-cli": "4.7.1",
"rimraf": "2.7.1",
"typescript": "3.8.3"
},
"engines": {
"node": ">= 11.6.0"
}
}