-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "council-kit",
"version": "0.0.3",
"license": "AGPL-3.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=./packages/*",
"dev": "turbo run dev --parallel --filter=./apps/*",
"lint": "turbo run lint",
"format": "turbo run format",
"format:check": "turbo run format:check",
"typecheck": "turbo run typecheck",
"postinstall": "husky install",
"test": "turbo test",
"release": "turbo build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"eslint": "^8.56.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"os-browserify": "^0.3.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "latest"
},
"lint-staged": {
"{apps,packages}/**/*.{gql,graphql,js,jsx,ts,tsx,json}": [
"eslint --fix",
"prettier --write"
]
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@types/react": "18.2.57",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"viem": "^2.16.2",
"wagmi": "^2.5.7"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}