-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "webpack-graphql-loader",
"version": "1.0.2",
"description": "webpack graphql loader",
"main": "./lib/loader.js",
"types": "./lib/loader.d.ts",
"author": "Stephen Wan <stephen@stephenwan.com>",
"homepage": "https://github.com/stephen/graphql-loader/",
"repository": {
"type": "git",
"url": "https://github.com/stephen/graphql-loader.git"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublish": "npm test && npm run build",
"test": "jest"
},
"resolutions": {
"graphql": "0.13.2"
},
"devDependencies": {
"@types/graphql": "^0.11.7",
"@types/jest": "^20.0.4",
"@types/loader-utils": "^1.1.0",
"@types/memory-fs": "^0.3.0",
"@types/node": "^8.0.14",
"@types/webpack": "^3.0.4",
"graphql": "0.13.2",
"jest": "^20.0.4",
"memory-fs": "^0.4.1",
"prettier": "^1.5.3",
"ts-loader": "3.x",
"ts-node": "^3.2.0",
"typescript": "2.6.1",
"webpack": "3.8.1"
},
"dependencies": {
"apollo-codegen": "^0.19.1",
"loader-utils": "^1.1.0",
"pify": "^3.0.0"
},
"peerDependencies": {
"graphql": ">=0.11.7",
"ts-loader": "^4.4.1"
},
"jest": {
"testMatch": [
"**/test/?(*.)(spec).ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/test/preprocessor.js"
}
}
}