-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "focus4-packages",
"version": "11.0.0",
"description": "Focus v4 (Typescript + MobX)",
"main": "",
"workspaces": [
"packages/tooling",
"packages/core",
"packages/styling",
"packages/toolbox",
"packages/stores",
"packages/forms",
"packages/layout",
"packages/collections",
"packages/focus4",
"packages/legacy",
"packages/docs"
],
"repository": {
"type": "git",
"url": "https://github.com/klee-contrib/focus4.git"
},
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/klee-contrib/focus4",
"scripts": {
"build": "npm run build --workspaces --if-present",
"clean": "node scripts/clean.js",
"docgen": "node scripts/docgen.mjs",
"docs": "storybook dev --docs -p 6006 -c packages/docs/.storybook",
"docs-build": "storybook build --docs -c packages/docs/.storybook -o docs",
"eslint": "eslint --ext .ts,.tsx packages",
"publish": "lerna publish --exact",
"stylelint": "stylelint packages/**/*.css",
"test": "vitest run",
"test-ci": "vitest run --reporter=default --reporter=junit --outputFile=test-report.xml"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-typescript": "12.1.2",
"css-tree": "3.1.0",
"lerna": "8.1.9",
"postcss": "8.4.49",
"react": "18.3.1",
"react-docgen-typescript": "2.2.2",
"react-dom": "18.3.1",
"rollup": "4.30.0",
"rollup-plugin-copy-glob": "0.4.1",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-preserve-shebang": "1.0.1",
"tslib": "2.8.1",
"typescript": "5.7.2",
"vitest": "2.1.8"
}
}