forked from HoudiniGraphql/houdini
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.64 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
{
"name": "houdini-monorepo",
"private": true,
"version": "0.16.8",
"description": "The disappearing graphql client for SvelteKit",
"type": "module",
"scripts": {
"tests": "vitest",
"test": "pnpm run tests",
"build:all": "turbo build",
"build": "turbo 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",
"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.13",
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.0",
"@playwright/test": "1.25.0",
"@sveltejs/adapter-vercel": "1.0.0-next.81",
"@theguild/eslint-config": "^0.1.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"graphql": "^15.8.0",
"playwright-core": "1.25.0",
"prettier": "^2.7.0",
"turbo": "^1.5.5",
"vite": "^3.1.6",
"vitest": "^0.23.4"
},
"dependencies": {
"fs-extra": "^10.1.0",
"jest-snapshot": "^29.1.2",
"memfs": "^3.4.7",
"recast": "^0.21.5"
}
}