-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.1 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
{
"name": "@human-tools/use-sortable",
"version": "0.0.5",
"description": "Simple implementation that allows you to reorder items easily using useSortable hook.",
"homepage": "https://github.com/human-toos/use-sortable",
"repository": "https://github.com/human-toos/use-sortable",
"license": "MIT",
"files": [
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "watch 'mkdir -p examples/src/use-sortable-lib && cp src/index.ts examples/src/use-sortable-lib/' ./src",
"build": "npx pika build",
"version": "npx @pika/pack",
"test": "jest",
"test:watch": "jest --watch"
},
"peerDependencies": {
"react": "^17.0.1"
},
"author": "Mohammed Khatib",
"keywords": [
"Sortable",
"useSortable",
"React",
"Hooks",
"Ordering",
"Drag and Drop",
"Lists"
],
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"**/*.test.ts",
"**/*.test.tsx"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^1.19.1",
"react": "*",
"react-dom": "^17.0.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"watch": "^1.0.2"
}
}