-
Notifications
You must be signed in to change notification settings - Fork 201
/
package.json
115 lines (115 loc) · 3.37 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
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
{
"name": "@leva-ui/root",
"version": "0.0.1",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"demo"
],
"preconstruct": {
"packages": [
"packages/*"
]
},
"scripts": {
"postinstall": "husky install && preconstruct dev",
"build": "preconstruct build",
"watch": "preconstruct watch",
"dev": "preconstruct dev",
"lint": "pretty-quick --staged",
"lint:full": "eslint packages/*/src",
"ci:version": "yarn changeset version",
"ci:release": "yarn build && yarn changeset publish",
"validate": "preconstruct validate",
"tsc": "tsc --noEmit",
"size": "yarn build && size-limit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --quiet",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"demo:dev": "yarn workspace demo dev",
"demo:build": "yarn workspace demo build",
"demo:serve": "yarn workspace demo serve",
"ci:test": "yarn demo:build && start-server-and-test demo:serve http-get://localhost:5000 cypress:run",
"prepare": "husky install",
"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",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@changesets/cli": "^2.18.1",
"@emotion/react": "^11.7.1",
"@preconstruct/cli": "^2.1.5",
"@radix-ui/react-icons": "^1.0.3",
"@size-limit/preset-big-lib": "^8.1.0",
"@storybook/addon-actions": "^6.4.18",
"@storybook/addon-essentials": "^6.4.18",
"@storybook/addon-links": "^6.4.18",
"@storybook/addon-storysource": "^6.4.18",
"@storybook/react": "^6.4.18",
"@testing-library/cypress": "^8.0.2",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"cypress": "6.9.1",
"eslint": "^8.8.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"size-limit": "^8.1.0",
"start-server-and-test": "^1.14.0",
"tsd": "^0.19.1",
"typescript": "4.5.5"
},
"prettier": {
"bracketSameLine": true,
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2,
"printWidth": 120
}
}