-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.44 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.44 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "frappe-ui-react",
"private": true,
"version": "1.1.0",
"type": "module",
"engines": {
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">= 10.0.0"
},
"scripts": {
"prepare": "husky",
"dev": "vite",
"build": "pnpm --filter @rtcamp/frappe-ui-react build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build; cp .storybook/public/favicon.svg storybook-static/",
"test:unit": "jest --config=tests/unitTest.jest.config.cjs",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "eslint .",
"lint:types": "tsc --build --noEmit",
"lint:js:fix": "eslint --fix .",
"publish:local": "pnpm --filter @rtcamp/frappe-ui-react publish:local ",
"unpublish:local": "pnpm --filter @rtcamp/frappe-ui-react unpublish:local ",
"build:publish:local": "pnpm build && pnpm publish:local",
"publish:remote": "pnpm --filter @rtcamp/frappe-ui-react publish:remote ",
"build:publish:remote": "pnpm build && pnpm publish:remote",
"local-registry:start": "bash ./bin/setup-local-registry.sh",
"local-registry:stop": "bash ./bin/stop-local-registry.sh",
"format": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\""
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@eslint/js": "^9.30.1",
"@storybook/addon-a11y": "^9.1.19",
"@storybook/addon-docs": "^9.1.19",
"@storybook/addon-themes": "^9.1.19",
"@storybook/addon-vitest": "^9.1.19",
"@storybook/react-vite": "^9.1.19",
"@tailwindcss/vite": "^4.1.11",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"babel-jest": "^30.1.2",
"babel-plugin-styled-components": "^2.1.4",
"baseline-browser-mapping": "^2.9.15",
"eslint": "^9.39.2",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-storybook": "^9.1.19",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"jest-extended": "^6.0.0",
"lint-staged": "^16.2.6",
"npm-run-all": "^4.1.5",
"playwright": "^1.57.0",
"prettier": "^3.7.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"storybook": "^9.1.19",
"typescript": "~5.9.3",
"typescript-eslint": "^8.53.0",
"vite": "^7.3.1",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.(cjs|js|ts|tsx)": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
],
"*.(xml|xml.dist)": "prettier --write",
"*.yml": "prettier --write"
},
"dependencies": {
"react-docgen-typescript": "^2.4.0"
},
"packageManager": "pnpm@10.13.1",
"pnpm": {
"overrides": {
"minimatch": "^10.2.3",
"markdown-it": ">=14.1.1",
"ajv@<6.14.0": "^6.14.0",
"rollup@>=4.0.0 <4.59.0": "^4.59.0",
"flatted@<3.4.2": "^3.4.2",
"brace-expansion@>=4.0.0 <5.0.5": "^5.0.5",
"picomatch@>=4.0.0 <4.0.4": "^4.0.4",
"yaml@>=2.0.0 <2.8.3": "^2.8.3"
}
}
}