-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.01 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "gram",
"version": "2.1.2",
"description": "",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tsc --p ./tsconfig.build.json",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"dev": "npm run test:watch",
"prepare": "npm run snyk-protect; npm run build",
"test": "npm run test:coverage",
"test-only": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"semantic-release": "semantic-release",
"snyk-protect": "snyk protect"
},
"repository": {
"type": "git",
"url": "https://github.com/raynode/gram.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"pretty-quick --staged",
"tslint --fix",
"git add"
]
},
"keywords": [],
"author": "Tobias Kopelke <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/raynode/gram/issues"
},
"homepage": "https://github.com/raynode/gram/src/gram#readme",
"dependencies": {
"@saeris/graphql-scalars": "^2.0.0",
"@types/graphql-type-json": "^0.3.0",
"graphql-subscriptions": "^1.1.0",
"graphql-tools": "^7.0.0",
"graphql-type-json": "^0.3.0",
"inflection": "^1.12.0",
"lodash": "^4.17.15",
"snyk": "^1.208.0"
},
"peerDependencies": {
"graphql": "^14.4.2"
},
"devDependencies": {
"@types/graphql": "^14.2.3",
"@types/inflection": "^1.5.28",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.136",
"@types/uuid": "^8.0.0",
"coveralls": "^3.0.5",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"husky": "^4.0.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.0",
"prettier": "^2.0.0",
"pretty-quick": "^3.0.0",
"rimraf": "^3.0.0",
"semantic-release": "^17.2.2",
"subscriptions-transport-ws": "^0.9.16",
"ts-jest": "^25.0.0",
"ts-node": "^9.0.0",
"tslint": "^6.0.0",
"typescript": "^3.5.3"
},
"snyk": true
}