-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.95 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.95 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
52
53
54
55
56
57
58
59
60
{
"name": "root",
"private": true,
"scripts": {
"distclean": "rimraf \"{packages,out}/*/{.tsbuildinfo,dist}\"",
"dev": "sh ./tools/dev.sh",
"dev:storybook": "pushd packages/storybook && pnpm storybook; popd",
"dev:docs": "pushd packages/docs && pnpm dev; popd",
"build:docs": "sh ./tools/build-docs.sh",
"build:storybook": "pushd packages/storybook && pnpm build-storybook; popd",
"build": "sh ./tools/build.sh",
"build:api": "pnpm build && mkdir -p docs/api && typedoc --exclude \"dist/\" --out docs/api --entryPointStrategy packages .",
"lint": "eslint --cache packages/core/src packages/react/src",
"test": "jest",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@eslint/compat": "^1.2.8",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.1",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@rollup/plugin-replace": "2.4.2",
"@rollup/plugin-strip": "2.0.1",
"@rollup/plugin-typescript": "8.2.1",
"@types/jest": "29.5.14",
"@types/node": "16.0.0",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"@typescript-eslint/eslint-plugin": "8.31.0",
"@typescript-eslint/parser": "8.31.0",
"canvas": "3.1.0",
"eslint": "9.25.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"husky": "^7.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"rimraf": "6.0.1",
"rollup": "2.52.7",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-string": "3.0.0",
"rollup-plugin-terser": "7.0.2",
"ts-expect": "1.3.0",
"ts-jest": "29.3.2",
"ts-loader": "9.2.3",
"tslib": "^2.8.1",
"typedoc": "^0.28.3",
"typescript": "^5.7.3"
},
"dependencies": {
"immer": "^10.1.1",
"rxjs": "^7.8.2"
}
}