-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "query-adaptor",
"private": true,
"packageManager": "[email protected]",
"homepage": "https://github.com/gwansikk/query-adaptor",
"bugs": "https://github.com/gwansikk/query-adaptor/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/gwansikk/query-adaptor.git"
},
"license": "MIT",
"author": "Gwansik Kim <[email protected]>",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
"test": "turbo run test",
"check-types": "turbo run check-types",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --cache"
],
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/eslint": "^8",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitest/coverage-istanbul": "^2.0.5",
"eslint": "^8.56.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"prettier": "^3.1.1",
"tsup": "^8.2.4",
"turbo": "^2.1.2",
"typescript": "^5.3.3",
"vite": "^5.4.1",
"vitest": "^2.0.5"
}
}