-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.5 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.5 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
107
108
109
110
111
112
113
114
115
116
{
"name": "@leva-ui/root",
"version": "0.0.1",
"license": "MIT",
"private": true,
"preconstruct": {
"packages": [
"packages/*"
]
},
"scripts": {
"postinstall": "preconstruct dev",
"build": "preconstruct build",
"watch": "preconstruct watch",
"dev": "preconstruct dev",
"lint": "pretty-quick --staged",
"lint:full": "eslint packages/*/src",
"ci:version": "pnpm changeset version && pnpm --filter \"leva\" --filter \"@leva-ui/*\" install --lockfile-only",
"ci:publish": "pnpm build && pnpm changeset publish",
"validate": "preconstruct validate",
"tsc": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"size": "size-limit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --quiet",
"chromatic": "chromatic --exit-zero-on-changes",
"demo:dev": "pnpm --filter demo run dev",
"demo:build": "pnpm --filter demo run build",
"demo:serve": "pnpm --filter demo run serve",
"prettier": "prettier --check ."
},
"size-limit": [
{
"name": "Leva",
"limit": "3s",
"path": "packages/leva/dist/leva.*.prod.js"
},
{
"name": "Leva Plugin Spring",
"limit": "3s",
"path": "packages/plugin-spring/dist/leva-ui-plugin-spring.*.prod.js"
},
{
"name": "Leva Plugin Dates",
"limit": "3s",
"path": "packages/plugin-dates/dist/leva-ui-plugin-dates.*.prod.js"
}
],
"repository": {
"type": "git",
"url": "https://github.com/pmndrs/leva.git"
},
"bugs": "https://github.com/pmndrs/leva/issues",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.26.0",
"@emotion/react": "^11.10.5",
"@preconstruct/cli": "^2.3.0",
"@radix-ui/react-icons": "^1.1.1",
"@size-limit/preset-big-lib": "^8.1.0",
"@stitches/react": "^1.2.8",
"@storybook/addon-docs": "10.0.2",
"@storybook/addon-links": "^10.0.2",
"@storybook/react": "^10.0.2",
"@storybook/react-webpack5": "^10.0.2",
"@storybook/test": "^8.6.14",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@welldone-software/why-did-you-render": "^7.0.1",
"all-contributors-cli": "^6.24.0",
"babel-loader": "^10.0.0",
"chromatic": "^13.3.3",
"eslint": "^8.32.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "10.0.2",
"husky": "^8.0.3",
"playwright": "^1.56.1",
"playwright-core": "^1.56.1",
"pnpm": "^7.25.0",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"size-limit": "^8.1.0",
"storybook": "^10.0.2",
"tsd": "^0.25.0",
"typescript": "catalog:",
"jsdom": "^27.1.0",
"vitest": "^4.0.8"
},
"prettier": {
"bracketSameLine": true,
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2,
"printWidth": 120
}
}