forked from aalises/barcelona-urban-mobility-graphql-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.89 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
{
"name": "barcelona-urban-mobility-graphql-api",
"version": "1.0.0",
"description": "Barcelona Urban Mobility GraphQL API",
"main": "src/graphql.ts",
"scripts": {
"build": "netlify-lambda build src",
"start": "netlify-lambda serve src",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"schema": "graphql-codegen",
"generate:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "jest",
"test:coverage": "jest --coverage"
},
"author": "aalises",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@graphql-codegen/cli": "^1.17.10",
"@graphql-codegen/schema-ast": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.10",
"@types/graphql-relay": "^0.6.0",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"apollo-datasource-rest": "^0.9.4",
"apollo-link": "^1.2.14",
"apollo-link-http": "^1.5.17",
"apollo-server-testing": "^2.18.2",
"babel-jest": "^26.5.2",
"babel-node": "^0.0.1-security",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.5.3",
"netlify-lambda": "^2.0.1",
"prettier": "^2.1.2",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3"
},
"dependencies": {
"apollo-server-lambda": "^2.18.2",
"apollo-server-plugin-response-cache": "^0.5.6",
"geolib": "^3.3.0",
"graphql": "^15.3.0",
"graphql-relay": "^0.6.0",
"graphql-type-json": "^0.3.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}