-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
executable file
·64 lines (64 loc) · 1.98 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
{
"name": "houdini-monorepo",
"private": true,
"version": "1.0.0",
"description": "The disappearing graphql client for SvelteKit",
"type": "module",
"scripts": {
"tests": "vitest",
"tests:ui": "vitest --ui --coverage",
"test": "pnpm run tests",
"build:all": "turbo build",
"build": "turbo run build --filter=\"./packages/*\"",
"dev": "turbo dev --filter=\"./packages/*\"",
"compile:all": "turbo compile",
"compile": "turbo compile --filter=\"./packages/*\"",
"typedefs:all": "turbo run typedefs",
"typedefs": "turbo run typedefs --filter=\"./packages/*\"",
"lint": "eslint --ignore-path .prettierignore \"./packages/*/src/**/*.ts\"",
"format": "prettier \"packages/**/*.ts\"",
"format:write": "npm run format -- -w",
"format:check": "npm run format -- --check",
"version": "changeset version",
"changeset": "changeset",
"release": "pnpm run 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": {
"@changesets/changelog-git": "^0.1.14",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@playwright/test": "1.48.0",
"@theguild/eslint-config": "^0.8.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/react": "^18.2.22",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"graphql": "^15.8.0",
"lint-staged": "^12.3.4",
"prettier": "^2.8.3",
"turbo": "^1.8.8",
"typescript": "^4.9",
"vite": "^5.3.3",
"vitest": "^1.6.0"
},
"dependencies": {
"fs-extra": "^10.1.0",
"jest-snapshot": "^29.4.1",
"memfs": "^3.4.7",
"recast": "^0.23.1"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.ts&!(*.d.ts)": "prettier -w ",
"*.tsx": "prettier -w ",
"*.js": "prettier -w ",
"*.json": "prettier -w "
},
"resolutions": {
"graphql": "15.5.0"
}
}