-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.81 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
{
"name": "graphqlgen-template-yoga",
"version": "0.0.0",
"main": "src/index.ts",
"scripts": {
"start": "nodemon -x ts-node --no-cache src/index.ts",
"test": "jest",
"eslint": "eslint",
"generate": "graphqlgen"
},
"dependencies": {
"@types/lodash": "^4.14.119",
"graphql-yoga": "^1.16.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.ts": [
"npm run eslint -- --fix",
"git add",
"npm run test -- --findRelatedTests"
]
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.10",
"@types/node": "^10.11.5",
"apollo-cache-inmemory": "^1.3.12",
"apollo-client": "^2.4.8",
"apollo-link-schema-with-stack": "^1.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "5.6.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-typescript": "^0.12.0",
"graphql-tag": "^2.10.0",
"graphqlgen": "0.5.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lint-staged": "^7.0.0",
"lodash": "^4.17.11",
"nodemon": "1.18.9",
"prettier": "^1.14.3",
"supertest": "^3.3.0",
"testdouble": "^3.9.1",
"ts-jest": "^23.10.5",
"ts-node": "7.0.1",
"typescript": "3.2.2",
"typescript-eslint-parser": "^19.0.2"
},
"license": "MIT"
}