-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.49 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
{
"name": "@qidydl/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/qidydl)",
"devDependencies": {
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"syncpack": "^11.2.1",
"vitest": "^0.34.2"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8"
},
"homepage": "https://github.com/qidydl/vite-workspace-experiment",
"license": "MIT",
"packageManager": "[email protected]",
"prettier": {
"endOfLine": "auto"
},
"private": true,
"repository": "qidydl/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"
}
}