-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
92 lines (92 loc) · 2.65 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
{
"name": "villus-monorepo",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"docs:dev": "cd ./docs && npm run dev && cd -",
"docs:build": "cd ./docs && npm run build && cd -",
"docs:deploy": "./scripts/deploy-docs.sh",
"test": "vitest",
"test:ci": "vitest",
"cover": "vitest run --coverage",
"cover:ci": "vitest run --coverage",
"lint": "eslint . '**/*.{js,jsx,ts,tsx}' --fix",
"build": "node scripts/build.mjs",
"postversion": "npm run build",
"format": "prettier ./packages/**/*.ts --write",
"typecheck": "pnpm tsc --noEmit --project ./tsconfig.json --skipLibCheck",
"prepare": "husky"
},
"author": "Abdelrahman Awad <[email protected]>",
"license": "MIT",
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.3",
"@changesets/cli": "^2.27.2",
"@commitlint/cli": "^19.3.0",
"@eslint/js": "^9.3.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@shikijs/transformers": "^1.5.2",
"@types/graphql": "^14.5.0",
"@types/node-fetch": "^2.6.11",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^1.6.0",
"@vue/compiler-sfc": "^3.4.27",
"bundlesize": "^0.18.2",
"chalk": "^5.3.0",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"fast-json-stable-stringify": "^2.1.0",
"filesize": "^10.1.2",
"flush-promises": "^1.0.2",
"fs-extra": "^11.2.0",
"globals": "^15.2.0",
"gql.tada": "^1.7.5",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.16.0",
"gzip-size": "^7.0.0",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"mkdirp": "^3.0.1",
"msw": "^1.2.3",
"node-fetch": "^3.3.2",
"prettier": "^3.2.5",
"rollup": "^4.17.2",
"rollup-plugin-dts": "^6.1.1",
"terser": "^5.31.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0",
"vitest": "^1.6.0",
"vue": "^3.4.27",
"wait-for-expect": "^3.0.2"
},
"bundlesize": [
{
"path": "./dist/*.min.js",
"maxSize": "10 kB"
}
],
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"vitest run related --passWithNoTests"
],
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}