-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.73 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
{
"name": "@thaddeusjiang/react-sortable-list",
"author": "Thaddeus Jiang",
"version": "0.1.3-rc.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/react-sortable-list.esm.js",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-tailwind": "NODE_ENV=production npx tailwindcss -o ./dist/index.css --minify",
"build": "tsdx build && npm run build-tailwind",
"prepare": "npm run build"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/react-sortable-list.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-sortable-list.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.17.9",
"@chromatic-com/storybook": "^1.9.0",
"@size-limit/preset-small-lib": "^7.0.8",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/addons": "^7.6.17",
"@storybook/react": "^8.3.5",
"@storybook/react-webpack5": "^8.3.5",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/testing-library__jest-dom": "^5.14.3",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.4",
"cssnano": "^5.1.7",
"husky": "^7.0.4",
"jest-environment-jsdom-sixteen": "^2.0.0",
"postcss": "^8.4.12",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-is": "^18.0.0",
"size-limit": "^7.0.8",
"tailwindcss": "^3.0.24",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/ThaddeusJiang/react-sortable-list#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ThaddeusJiang/react-sortable-list.git"
},
"bugs": {
"url": "https://github.com/ThaddeusJiang/react-sortable-list/issues"
},
"keywords": [
"React",
"Sortable List",
"Drag and Drop",
"@dnd-kit"
],
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0"
}
}