-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
100 lines (100 loc) · 3.06 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@marko/urql",
"description": "An isomorphic wrapper over the urql GraphQL client for Marko.",
"version": "0.0.0",
"author": "Ryan Carniato <[email protected]>",
"bugs": {
"url": "https://github.com/marko-js/urql/issues"
},
"dependencies": {
"@urql/core": "^3.0.4",
"@urql/devtools": "^2.0.3",
"make-fetch-happen": "^13.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@marko/compiler": "^5.34.2",
"@marko/express": "^2.1.0",
"@marko/fixture-snapshots": "^2.2.1",
"@marko/testing-library": "^6.1.5",
"@types/convert-source-map": "^2.0.3",
"@types/express": "^4.17.21",
"@types/istanbul-lib-instrument": "^1.7.7",
"@types/jsdom": "^21.1.6",
"@types/make-fetch-happen": "^10.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"convert-source-map": "^2.0.0",
"esbuild": "^0.19.9",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-codeframe": "^7.32.1",
"express": "^4.18.2",
"fast-glob": "^3.3.2",
"fixpack": "^4.0.0",
"graphql": "^16.8.1",
"graphql-http": "^1.22.0",
"husky": "^8.0.3",
"istanbul-lib-instrument": "^6.0.1",
"jsdom": "^23.0.1",
"lint-staged": "^15.2.0",
"marko": "^5.32.2",
"mocha": "^10.2.0",
"mocha-snap": "^5.0.0",
"nyc": "^15.1.0",
"playwright": "^1.40.1",
"prettier": "^3.1.1",
"replace": "^1.2.2",
"semantic-release": "^22.0.12",
"tsx": "^4.19.2",
"typescript": "^5.3.3"
},
"files": [
"dist",
"marko.json",
"!**/__tests__",
"!**/*.tsbuildinfo"
],
"homepage": "https://github.com/marko-js/urql",
"keywords": [
"embed",
"frame",
"frontend",
"micro",
"streaming"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"peerDependencies": {
"graphql": "0.11 - 16"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marko-js/urql.git"
},
"scripts": {
"build": "tsc -b && tsx build",
"ci:test": "nyc npm run mocha -- --forbid-pending --forbid-only",
"format": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write && (fixpack || true)",
"lint": "tsc -b && npm run lint:eslint && npm run lint:prettier -- -l && fixpack",
"lint:eslint": "eslint -f visualstudio .",
"lint:prettier": "prettier '**/*{.ts,.js,.json,.md,.yml,rc}' --with-node-modules",
"mocha": "NODE_ENV=test mocha 'src/**/__tests__/*.test.ts'",
"postpublish": "replace --silent 'dist' 'src' marko.json",
"prepare": "husky install",
"prepublishOnly": "npm run build && replace --silent 'src' 'dist' marko.json",
"release": "semantic-release",
"report": "open ./coverage/lcov-report/index.html",
"test": "npm run mocha -- --watch",
"test:inspect": "npm test -- --inspect",
"test:update": "npm run mocha -- --update"
},
"types": "./dist/index.d.ts"
}