-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 925 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 925 Bytes
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
{
"name": "equality",
"private": true,
"packageManager": "pnpm@9.12.3",
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r --parallel run dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "pnpm --filter @eqtylab/equality run release",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.0.0",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"typescript-eslint": "^8.53.0"
},
"pnpm": {
"overrides": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2"
}
}
}