-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.7 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
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
{
"name": "md3-ui",
"private": true,
"homepage": "https://eikefoken.com/md3-ui",
"workspaces": [
"packages/*",
"tools/*",
"app",
"docs"
],
"dependencies": {
"@md3-ui/core": "workspace:*",
"@md3-ui/test-utils": "workspace:*",
"@storybook/addon-a11y": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/react-vite": "^7.4.6",
"@swc/core": "^1.3.93",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^6.1.4",
"@types/jest": "^29.5.5",
"@types/node": "^18.18.5",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"clean-package": "^2.2.0",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^6.1.0",
"eslint-plugin-unicorn": "^48.0.1",
"gh-pages": "^6.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"knip": "^2.33.3",
"lerna": "^7.3.1",
"lint-staged": "^15.0.1",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.72.6",
"react-native-safe-area-context": "4.6.3",
"react-native-web": "^0.19.9",
"rimraf": "^5.0.5",
"storybook": "^7.4.6",
"storybook-addon-performance": "^0.17.1",
"storybook-dark-mode": "^3.0.1",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"typescript": "~5.2.2",
"vite": "^4.4.11"
},
"resolutions": {
"@types/react": "^18.2.28"
},
"scripts": {
"build": "lerna run build --ignore=\"@md3-ui/docs\"",
"build:props-docs": "pnpm typedocs && lerna run build --scope=\"@md3-ui/props-docs\"",
"clean": "pnpm -r --parallel exec rimraf dist *.log",
"deploy": "pnpm storybook:build && gh-pages -d storybook-static && rimraf storybook-static",
"lint": "eslint .",
"prepare": "husky install",
"prestorybook": "rimraf node_modules/.cache/storybook",
"storybook": "sb dev -p 6006",
"storybook:build": "sb build",
"tsc": "pnpm typecheck",
"test": "jest --maxWorkers=50%",
"test:ci": "jest --color --runInBand --ci",
"test:watch": "jest --maxWorkers=25% --watch --onlyChanged",
"typedocs": "lerna run typedocs",
"typecheck": "tsc --noEmit"
}
}