-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "@minstack/snippets",
"license": "CC0-1.0",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "tsc && npm run lint --max-warnings=0 && vitest run",
"modernize": "npx npm-check-updates -i --format group",
"release": "catch-uncommitted --exclude=.npmrc && lerna publish from-package --no-git-tag-version --no-push --yes",
"bump": "lerna exec npm -- version patch"
},
"workspaces": [
"*/"
],
"devDependencies": {
"@lerna-lite/exec": "^2.7.0",
"@lerna-lite/publish": "^2.7.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/eslint": "^8.44.7",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^0.34.6",
"catch-uncommitted": "^2.0.0",
"eslint": "^8.53.0",
"eslint-config-rational": "^3.0.9",
"jsdom": "^22.1.0",
"prettier": "^3.1.0",
"react-dom": "^18.2.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"react": "^18.2.0"
},
"engines": {
"node": ">=18",
"npm": ">=8",
"yarn": "please-use-npm",
"pnpm": "please-use-npm"
},
"engineStrict": true
}