-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.26 KB
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
{
"name": "define-query-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run dev -w define-query-demo",
"build": "npm run build -w define-query",
"build:demo": "npm run build -w define-query && npm run build -w define-query-demo",
"version:lib": "npm version -w define-query",
"version:lib:patch": "npm version patch -w define-query",
"version:lib:minor": "npm version minor -w define-query",
"version:lib:major": "npm version major -w define-query",
"publish:lib": "npm publish -w define-query --access public",
"lint": "eslint .",
"test": "vitest run",
"preview": "npm run preview -w define-query-demo"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.12.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"tsup": "^8.5.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2",
"vitest": "^3.2.4"
},
"workspaces": [
"packages/*"
]
}