-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
61 lines (61 loc) · 1.4 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
{
"name": "babel-plugin-import-graphql",
"version": "2.8.1",
"description": "Babel plugin to make .gql/.graphql files importable",
"author": "A.J. Roberts <[email protected]>",
"license": "MIT",
"main": "build/index.js",
"files": [
"build"
],
"keywords": [
"babel-plugin",
"apollo",
"graphql",
"gql",
"extension",
"import",
"inline"
],
"repository": "detrohutt/babel-plugin-import-graphql",
"scripts": {
"lint": "eslint plugin",
"test": "jest",
"prepare": "babel plugin --out-dir build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"graphql-tag": "^2.9.2"
},
"peerDependencies": {
"graphql": ">=0.9.6",
"graphql-tag": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.49",
"@babel/core": "7.20.7",
"@babel/preset-env": "^7.0.0-beta.49",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"eslint": "^9.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"graphql": "^0.13.2",
"husky": "^1.0.0-rc.8",
"jest": "^29.3.1",
"lint-staged": "^15.2.5",
"prettier": "^1.13.4"
},
"engines": {
"node": ">= 4.x"
}
}