forked from qidydl/vite-workspace-experiment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.29 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
54
55
56
57
58
{
"name": "@dosolkowski-work/vite-workspace-experiment",
"description": "Experimenting with creating a web UI using Vite, workspaces, and Preact or React",
"version": "1.0.0",
"author": "David Osolkowski (https://github.com/dosolkowski-work/)",
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.15.0",
"@eslint/js": "^9.13.0",
"@j4cobi/eslint-plugin-sort-imports": "^1.0.2",
"@tanstack/eslint-plugin-query": "^5.59.7",
"@vitest/eslint-plugin": "^1.1.7",
"@vitest/ui": "^2.1.3",
"eslint": "^9.13.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.1",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-react-compiler": "19.0.0-beta-8a03594-20241020",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.13",
"globals": "^15.11.0",
"npm-run-all2": "^7.0.0",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"syncpack": "^13.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.9",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9"
},
"homepage": "https://github.com/dosolkowski-work/vite-workspace-experiment",
"license": "MIT",
"packageManager": "pnpm@9.12.2+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/dosolkowski-work/vite-workspace-experiment"
},
"scripts": {
"build": "pnpm -r run build",
"clean": "pnpm -r run clean",
"lint": "run-s --continue-on-error lint:*",
"lint:code": "eslint .",
"lint:dependencies": "syncpack list-mismatches",
"lint:format": "prettier --check .",
"lint:styles": "stylelint --formatter verbose \"**/*.{css,sass,scss}\"",
"preinstall": "npx only-allow pnpm",
"start": "pnpm -r --parallel run start",
"test": "vitest"
},
"type": "module"
}