forked from HoudiniGraphql/houdini
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·103 lines (103 loc) · 3.67 KB
/
package.json
File metadata and controls
executable file
·103 lines (103 loc) · 3.67 KB
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
101
102
103
{
"name": "houdini",
"version": "0.15.0-next.0",
"description": "The disappearing graphql client for SvelteKit",
"workspaces": [
"example",
"integration",
"."
],
"type": "module",
"bin": "./build/cmd.js",
"exports": {
".": {
"types": "./build/cmd/index.d.ts"
},
"./preprocess": {
"import": "./build/preprocess-esm/index.js",
"require": "./build/preprocess-cjs/index.js"
}
},
"types": "./build/cmd/index.d.ts",
"scripts": {
"tests": "NODE_ENV=test node --experimental-vm-modules node_modules/.bin/jest",
"tests:integration": "yarn workspace integration tests",
"tests:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"build": "concurrently \"npm run build:runtime\" \"npm run build:cmd\" \"npm run build:preprocess\" -n \"run,cmd,pre\" -c \"blue.bold,green.bold,yellow.bold\" && npm run build:typeModule",
"build:runtime": "concurrently \"npm run build:runtime:esm\" \"npm run build:runtime:cjs\" -n \"esm,cjs\" -c \"green,yellow\"",
"build:runtime:cjs": "tsc --p tsconfig.runtime.cjs.json",
"build:runtime:esm": "tsc --p tsconfig.runtime.esm.json",
"build:preprocess": "concurrently \"npm run build:preprocess:esm\" \"npm run build:preprocess:cjs\" -n \"esm,cjs\" -c \"green,yellow\"",
"build:preprocess:cjs": "TARGET=esm WHICH=preprocess rollup --config rollup.config.js",
"build:preprocess:esm": "TARGET=cjs WHICH=preprocess rollup --config rollup.config.js",
"build:cmd": "concurrently \"npm run build:cmd:main\" \"npm run build:cmd:types\" -n \"exe,typ\" -c \"green,yellow\"",
"build:cmd:main": "TARGET=esm WHICH=cmd rollup --config rollup.config.js",
"build:cmd:types": "tsc --p tsconfig.root.json",
"build:typeModule": "./typeModule.sh",
"format": "prettier \"src/**/*.ts\"",
"format:write": "npm run format -- -w",
"format:check": "npm run format -- --check",
"changeset": "changeset",
"version": "changeset version",
"release": "yarn build && changeset publish",
"postinstall": "node -e \"try { require('husky').install(); console.log('ran prepack') } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.16.7",
"@changesets/changelog-github": "^0.4.4",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.0",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.23",
"@types/node-fetch": "^2.6.1",
"babel-jest": "^26.6.3",
"babel-plugin-transform-import-meta": "^2.1.1",
"concurrently": "^7.1.0",
"fs-extra": "^10.0.1",
"husky": "^6.0.0",
"install": "^0.13.0",
"jest": "^26.6.3",
"mock-fs": "^4.13.0",
"npm": "^8.6.0",
"pinst": "^3.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.1",
"rollup": "2.68.0",
"rollup-plugin-typescript2": "^0.31.2",
"ts-ast-serializer": "^1.0.1",
"ts-jest": "^26.0.0",
"ts-node": "^9.1.1",
"tslib": "^2.4.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@babel/parser": "^7.17.2",
"@changesets/changelog-git": "^0.1.11",
"@changesets/cli": "^2.22.0",
"@graphql-tools/schema": "^8.3.7",
"@kitql/helper": "0.3.4",
"@rollup/plugin-replace": "^4.0.0",
"@sveltejs/kit": "1.0.0-next.350",
"@types/mock-fs": "^4.13.0",
"babylon": "^7.0.0-beta.47",
"commander": "^7.1.0",
"estree-walker": "^2.0.2",
"glob": "^8.0.1",
"global": "^4.4.0",
"graphql": "^15.5.0",
"inquirer": "^8.2.2",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.1",
"recast": "^0.20.4",
"remove": "^0.1.5",
"svelte": "^3.47.0"
},
"packageManager": "yarn@3.2.0"
}