-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
68 lines (68 loc) · 1.5 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
{
"name": "gqtx",
"version": "0.9.3",
"type": "module",
"main": "cjs/index.cjs",
"module": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.cjs"
}
},
"./relay": {
"import": {
"types": "./relay.d.ts",
"default": "./relay.js"
},
"require": {
"types": "./cjs/relay.d.ts",
"default": "./cjs/relay.cjs"
}
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/sikanhe/gqtx"
},
"license": "MIT",
"keywords": [
"graphql",
"typescript",
"graphql-server"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.0",
"@types/express": "^4.17.1",
"@types/jest": "26.0.23",
"@types/node": "15.12.1",
"cross-env": "7.0.3",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^16.7.0",
"jest": "29.6.2",
"prettier": "2.3.1",
"rollup": "^2.39.0",
"ts-jest": "29.1.1",
"ts-node": "^10.0.0",
"tslib": "^2.1.0",
"typescript": "5.1.6"
},
"peerDependencies": {
"graphql": "^16.7.0"
},
"scripts": {
"build:cjs": "cross-env MODE=cjs rollup -c",
"build:esm": "rollup -c",
"build": "yarn build:cjs && yarn build:esm",
"test": "jest",
"test:api": "tsc --project ./test-api/tsconfig.json"
}
}