-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "tiny-sortable-list",
"version": "1.1.2",
"description": "React tiny sortable list",
"homepage": "https://github.com/ufocoder/tiny-sortable-list",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ufocoder/tiny-sortable-list.git"
},
"keywords": [
"react",
"sortable",
"list"
],
"license": "MIT",
"source": "src/index.tsx",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.4.4",
"@storybook/addon-interactions": "^7.4.4",
"@storybook/addon-links": "^7.4.4",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.4",
"@storybook/react": "^7.4.4",
"@storybook/react-vite": "^7.4.4",
"@storybook/testing-library": "^0.2.1",
"@types/node": "^20.6.4",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.50.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.4.4",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.4",
"vite-plugin-eslint": "^1.8.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"build": "vite build",
"storybook:watch": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"files": [
"dist"
]
}