-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "@storybook-solidjs/root",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"example",
"packages/frameworks/*",
"packages/renderers/*"
]
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.0.0",
"esbuild": "^0.24.0",
"esbuild-plugin-alias": "^0.2.1",
"esbuild-plugin-solid": "^0.6.0",
"eslint": "^9.13.0",
"eslint-plugin-depend": "^0.11.0",
"execa": "^9.4.0",
"fdir": "^6.4.2",
"fs-extra": "^11.2.0",
"globals": "^15.11.0",
"jiti": "^2.3.3",
"picomatch": "^4.0.2",
"prettier": "^3.3.3",
"pretty-hrtime": "^1.0.3",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"slash": "^5.1.0",
"solid-js": "^1.9.3",
"sort-package-json": "^2.10.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"vitest": "^2.1.4"
},
"scripts": {
"build": "yarn workspaces foreach --all -pt run build",
"check:all": "yarn run check:lint && yarn run check:test && yarn run check:format",
"check:format": "prettier --check .",
"check:lint": "eslint .",
"check:test": "vitest run --no-isolate",
"fix:all": "yarn run fix:lint && yarn run fix:format",
"fix:format": "prettier --write .",
"fix:lint": "eslint . --fix",
"test": "vitest"
},
"packageManager": "[email protected]"
}