-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
67 lines (67 loc) · 2 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
{
"name": "graphql-compose-aws",
"version": "0.0.0-semantically-released",
"description": "AWS Cloud API via GraphQL",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/graphql-compose/graphql-compose-aws.git"
},
"keywords": [
"graphql",
"aws",
"amazon cloud",
"aws sdk",
"graphql-compose"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql-compose/graphql-compose-aws/issues"
},
"homepage": "https://github.com/graphql-compose/graphql-compose-aws#readme",
"peerDependencies": {
"graphql-compose": "^7.0.4 || ^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@types/express": "4.17.12",
"@types/jest": "26.0.23",
"@typescript-eslint/eslint-plugin": "4.25.0",
"@typescript-eslint/parser": "4.25.0",
"aws-sdk": "2.924.0",
"eslint": "7.27.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"express": "^4.17.1",
"express-graphql": "0.12.0",
"graphql": "15.5.0",
"graphql-compose": "9.0.0",
"jest": "27.0.3",
"nodemon": "2.0.7",
"prettier": "2.3.0",
"rimraf": "3.0.2",
"semantic-release": "17.4.3",
"ts-jest": "27.0.1",
"ts-node-dev": "1.1.6",
"typescript": "4.3.2"
},
"scripts": {
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"demo": "npm run demo-fullApi",
"demo-fullApi": "ts-node-dev --no-notify ./examples/fullApi/index.ts",
"demo-introspection": "ts-node-dev --no-notify ./examples/introspection/generate.ts",
"demo-partialApi": "ts-node-dev --no-notify ./examples/partialApi/index.ts",
"watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "yarn eslint && yarn tscheck",
"eslint": "eslint --ext .ts ./src",
"tscheck": "tsc --noEmit",
"test": "npm run coverage && npm run lint",
"semantic-release": "semantic-release"
}
}