forked from graz-sh/graz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
{
"name": "@strangelove-ventures/graz",
"version": "0.0.0",
"packageManager": "[email protected]",
"workspaces": [
"docs",
"example",
"packages/*"
],
"scripts": {
"build": "turbo run build --filter=!@project/docs",
"deduplicate": "npx yarn-deduplicate && yarn install",
"dev": "turbo run dev --filter=!@project/docs",
"docs": "yarn workspace @project/docs",
"example": "yarn workspace @project/example",
"graz": "yarn workspace graz",
"lint": "turbo run lint",
"prepare": "husky install",
"release": "turbo run build --filter=graz && yarn workspace graz publish",
"test": "turbo run test"
},
"devDependencies": {
"husky": "^8",
"lint-staged": "^13",
"patch-package": "^6",
"postinstall-postinstall": "^2",
"shx": "^0",
"tsup": "^6",
"turbo": "^1"
},
"resolutions": {
"axios": "npm:redaxios@latest"
},
"eslintConfig": {
"extends": [
"@project/eslint-config"
],
"ignorePatterns": [
"node_modules"
],
"root": true
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
]
},
"prettier": "@project/prettier-config",
"private": true,
"license": "MIT"
}