-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.47 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": "@dandori/monorepo",
"version": "0.0.1",
"private": true,
"description": "Dandori(段取り) analyzes and visualizes the dependencies of your tasks.",
"repository": {
"type": "git",
"url": "https://github.com/hiroki0525/dandori.git"
},
"scripts": {
"build": "turbo build",
"prepare": "husky install",
"test": "turbo test"
},
"keywords": [
"javascript",
"typescript",
"chatgpt",
"openai",
"gpt-4",
"gpt-3"
],
"author": "Hiroki Miyaji",
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-unused-imports": "3.0.0",
"eslint-plugin-vitest": "^0.3.20",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "3.2.4",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"turbo": "^1.11.3",
"typescript": "5.3.3",
"vitest": "^1.2.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.18.1",
"pnpm": "8.14.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,yml,yaml,css,scss,ts,tsx,md}": [
"prettier --write"
]
},
"workspaces": [
"packages/*"
]
}