-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.1 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
{
"name": "@offcourse/public-badges-backend",
"private": true,
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"codegen": "graphql-codegen --config codegen.yml",
"start": "concurrently \"tsc -w\"",
"preinvoke": "yarn build",
"invoke": "lambda-local -l dist/index.js",
"invoke:remote": "sls invoke --stage dev",
"prebuild": "rimraf dist && yarn codegen",
"build": "tsc",
"postbuild": "cp -r src/schema src/assets dist",
"predeploy": "yarn build",
"predeploy:pilot": "yarn build",
"deploy": "sls deploy --stage dev",
"deploy:pilot": "sls deploy --stage pilot"
},
"author": "Yeehaa",
"license": "MIT",
"devDependencies": {
"@graphql-codegen/cli": "^1.9.1",
"@graphql-codegen/introspection": "1.9.1",
"@graphql-codegen/typescript": "1.9.1",
"@graphql-codegen/typescript-document-nodes": "1.9.1",
"@graphql-codegen/typescript-resolvers": "1.9.1",
"@types/aws-lambda": "^8.10.39",
"@types/jws": "^3.2.1",
"@types/node": "^12.12.17",
"@types/node-fetch": "^2.5.4",
"@types/ramda": "^0.26.38",
"@types/uuid": "^3.4.6",
"@types/voca": "^1.4.0",
"concurrently": "^5.0.1",
"lambda-local": "^1.6.3",
"rimraf": "^3.0.0",
"serverless": "^1.59.3",
"serverless-domain-manager": "^3.3.1",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.1.0",
"typescript": "^3.7.3"
},
"dependencies": {
"apollo-server-lambda": "^2.14.2",
"graphql": "^14.5.8",
"graphql-import-node": "^0.0.4",
"graphql-playground-middleware-lambda": "^1.7.13",
"graphql-scalars": "^1.0.4",
"graphql-tools": "^4.0.6",
"jws": "^4.0.0",
"middy": "^0.33.2",
"module-alias": "^2.2.2",
"ramda": "^0.26.1",
"serverless-aws-static-file-handler": "^2.0.4",
"uuid": "^3.3.3",
"voca": "^1.4.0"
},
"_moduleAliases": {
"@stores": "dist/stores",
"@types": "dist/types",
"@eventBus": "dist/eventBus"
},
"workspaces": {
"nohoist": [
"**/*"
]
}
}