-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "ergast-apollo-server",
"version": "0.0.1",
"description": "",
"keywords": [],
"author": "markuswind@gmail.com",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build": "tsc -p .",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write --loglevel warn",
"fix:tslint": "tslint --fix --project .",
"generate:types": "graphql-codegen --config codegen.yml",
"start": "NODE_ENV=development ts-node src/index.ts",
"test": "run-s test:*",
"test:lint": "tslint --project . && prettier \"src/**/*.ts\" --list-different",
"test:types": "tsc -p . --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "npm run fix && npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"apollo-datasource": "^0.6.3",
"apollo-datasource-rest": "^0.6.11",
"apollo-server": "^2.9.3",
"apollo-server-env": "^2.4.3",
"dayjs": "^1.8.19",
"graphql": "^14.5.4",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@graphql-codegen/add": "^1.7.0",
"@graphql-codegen/cli": "^1.7.0",
"@graphql-codegen/typescript": "^1.7.0",
"@graphql-codegen/typescript-resolvers": "^1.7.0",
"@types/graphql": "^14.5.0",
"@types/node": "^13.1.6",
"husky": "^3.0.5",
"npm-run-all": "^4.1.5",
"prettier": "1.19.1",
"ts-node": "^8.6.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4"
}
}