-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "apollo-compatibility",
"private": true,
"version": "0.0.1",
"license": "Apache-2.0",
"main": "index.js",
"keywords": [],
"author": {
"name": "WunderGraph Maintainers",
"email": "[email protected]"
},
"repository": {
"type": "https",
"url": "https://github.com/wundergraph/apollo-compatibility"
},
"homepage": "https://wundergraph.com",
"engines": {
"node": ">=22.11.0",
"pnpm": ">=9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,yml,yaml,css,json,graphql,gql}": [
"prettier --write"
]
},
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm run -r --parallel test",
"husky": "husky install",
"lint:fix": "pnpm run -r --parallel lint:fix",
"clean": "del-cli '**/node_modules/' '**/**/dist/' '**/**/gen/' '**/**/.next' '**/**/tsconfig.tsbuildinfo' '**/**/.eslintcache'",
"release-preview": "lerna publish --ignore-scripts --dry-run",
"release": "lerna publish -y"
},
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@lerna-lite/cli": "3.3.1",
"@lerna-lite/publish": "3.7.1",
"@lerna-lite/version": "3.7.1",
"del-cli": "^5.1.0",
"husky": "^8.0.3",
"lint-staged": "^12.5.0",
"prettier": "^3.0.3",
"vitest": "^2.0.3"
}
}