-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.96 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
{
"name": "react-slite",
"version": "0.2.5",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"author": "palerdot<[email protected]>",
"repository": "https://github.com/palerdot/react-slite",
"module": "dist/react-slite.es.js",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"peerDependencies": {
"react": ">=18"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"test": "vitest",
"lint": "prettier --list-different src test",
"lint:fix": "prettier --write src test",
"prepare": "pnpm build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@storybook/addon-essentials": "^7.0.7",
"@storybook/addon-interactions": "^7.0.7",
"@storybook/addon-links": "^7.0.7",
"@storybook/blocks": "^7.0.7",
"@storybook/react": "^7.0.7",
"@storybook/react-vite": "^7.0.7",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@vitejs/plugin-react": "^4.0.0",
"babel-loader": "^9.1.2",
"happy-dom": "^9.10.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"storybook": "^7.0.7",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vite": "^4.3.4",
"vite-plugin-css-injected-by-js": "^3.1.0",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.30.1"
},
"dependencies": {
"@lexical/code": "^0.10.0",
"@lexical/link": "^0.10.0",
"@lexical/list": "^0.10.0",
"@lexical/markdown": "^0.10.0",
"@lexical/react": "^0.10.0",
"@lexical/rich-text": "^0.10.0",
"@lexical/selection": "^0.10.0",
"@lexical/table": "^0.10.0",
"@lexical/utils": "^0.10.0",
"lexical": "^0.10.0"
}
}