-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
79 lines (79 loc) · 2.02 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
{
"name": "react-movable",
"version": "3.3.1",
"type": "module",
"description": "Drag and drop lists.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tajo/react-movable.git"
},
"author": "Vojtech Miksu <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"provenance": true
},
"sideEffects": false,
"scripts": {
"build": "rm -rf lib && tsc --outDir lib && rm -rf lib/examples && mv lib/src/* lib && rm -rf lib/src && rm lib/*.test.* && rm lib/*.stories.*",
"lint": "eslint '{examples,src,e2e,.ladle}/**/*.{js,ts,tsx,mjs}'",
"test": "pnpm test:e2e && pnpm test:unit",
"test:e2e": "pnpm exec playwright test",
"test:unit": "vitest run src",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"release": "pnpm run build && changeset publish"
},
"tags": [
"react"
],
"keywords": [
"react",
"react-dom",
"react-component",
"sortable",
"reorder",
"reorderable",
"drag",
"drop",
"list",
"table",
"drag and drop",
"dnd",
"movable"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@ladle/react": "^4.1.0",
"@playwright/test": "^1.45.1",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^9.0.11",
"lint-staged": "^15.1.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "5.3.2",
"vitest": "^2.0.3"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}