-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.77 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.77 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@storybook/marko-root",
"private": true,
"type": "module",
"workspaces": [
"packages/frameworks/*",
"packages/renderers/*",
"tests/frameworks/*"
],
"scripts": {
"@ci:build": "npm run build",
"@ci:lint": "eslint . && prettier . --check --log-level=warn",
"@ci:release": "npm run build && changeset publish && npm ci",
"@ci:test": "npm run build:js && vitest run --no-color",
"@ci:version": "npm run build && npm run format && changeset version && npm i --package-lock-only",
"build": "npm run build:types && npm run build:js",
"build:js": "node ./scripts/build.ts",
"build:types": "mtc -p tsconfig.build.json",
"change": "changeset add",
"format": "npm run build:types && eslint --fix .; prettier . --write --log-level=warn",
"prepare": "husky",
"storybook:vite": "npm run build && npm run storybook --workspace=vite-tests",
"storybook:webpack": "npm run build && npm run storybook --workspace=webpack-tests",
"test": "npm run build:js && vitest run"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^10.0.1",
"@marko/compiler": "^5.39.62",
"@marko/testing-library": "^6.4.1",
"@marko/type-check": "^2.1.27",
"@marko/vite": "^6.0.1",
"@playwright/test": "^1.56.1",
"@testing-library/dom": "^10.4.1",
"@types/node": "^25.5.0",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jsdom": "^27.1.0",
"lint-staged": "^16.4.0",
"marko": "^5.38.33",
"prettier": "^3.8.1",
"prettier-plugin-packagejson": "^3.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.1"
}
}