forked from upframe/graphapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.21 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
{
"name": "graphapi",
"version": "1.0.0",
"description": "",
"scripts": {
"start:offline": "sls offline --stage offline",
"prettier:check": "prettier --check \"./*.{js,ts}\" \"./**/*.{js,ts}\"",
"prettier:write": "prettier --write \"./*.{js,ts}\" \"./**/*.{js,ts}\"",
"eslint:check": "eslint . --ext .js,.ts --cache",
"eslint:write": "eslint . --ext .js,.ts --fix --cache",
"lint": "npm run eslint:check && npm run prettier:check",
"format": "npm run eslint:write && npm run prettier:write",
"column-info": "node scripts/columnInfo && prettier --write ./db/meta/columns.json",
"publish:local": "npm run gql:types && npx apollo service:push -v=local-$(whoami)",
"gql:types": "node scripts/bundleSchema && npx graphql-codegen",
"key:gen": "ssh-keygen -t rsa -P \"\" -b 4096 -m PEM -f jwt.key && openssl rsa -in jwt.key -pubout -outform PEM -out jwt.key.pub"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.10.3",
"apollo-server-lambda": "^2.15.0",
"axios": "^0.19.2",
"bcrypt": "^5.0.0",
"fast-levenshtein": "^2.0.6",
"googleapis": "^62.0.0",
"graphql-subscriptions": "^1.1.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.15",
"lodash": "^4.17.19",
"markdown-it": "^11.0.0",
"mjml": "^4.6.3",
"moment-timezone": "^0.5.31",
"mustache": "^4.0.1",
"objection": "^2.2.0",
"pg": "^8.2.1",
"spacetime-informal": "^0.3.0",
"uuid": "^3.4.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@graphql-codegen/cli": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.8",
"@types/aws-lambda": "^8.10.57",
"@types/bcrypt": "^3.0.0",
"@types/faker": "^4.1.12",
"@types/jsonwebtoken": "^8.5.0",
"@types/markdown-it": "^10.0.2",
"@types/node": "^13.13.12",
"@types/uuid": "^3.4.9",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-eslint": "*",
"babel-loader": "*",
"babel-plugin-source-map-support": "^2.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"datadog-lambda-js": "^2.24.0",
"dotenv": "^8.2.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^4.1.0",
"fork-ts-checker-webpack-plugin": "^5.2.1",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"serverless": "^1.73.1",
"serverless-domain-manager": "^4.1.1",
"serverless-offline": "^5.7.2",
"serverless-offline-dynamodb-streams": "3.0.2",
"serverless-offline-sns": "^0.68.0",
"serverless-webpack": "^5.3.2",
"source-map-support": "^0.5.19",
"ts-loader": "^6.2.2",
"typescript": "^4.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^1.7.2"
}
}