forked from react-dnd/react-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.89 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
103
104
105
106
107
108
109
110
111
{
"name": "react-dnd-parent",
"private": true,
"description": "React-DnD Monorepo",
"repository": {
"type": "git",
"url": "https://github.com/react-dnd/react-dnd.git"
},
"keywords": [
"react",
"reactjs",
"file",
"drag",
"drop",
"html5",
"draggable",
"droppable",
"drag-and-drop",
"dnd",
"javascript",
"react-component",
"hoc"
],
"engines": {
"node": ">= 10.0"
},
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
"contributors": [
"Chris Trevino <darthtrevino@gmail.com> (http://github.com/darthtrevino)",
"Jordan Gensler (http://github.com/kesne)",
"Gagan (https://github.com/thetechie)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/react-dnd/react-dnd/issues"
},
"homepage": "https://github.com/react-dnd/react-dnd",
"scripts": {
"preinstall": "npx only-allow yarn",
"clean:all": "yarn workspaces foreach --exclude @react-dnd/build -pv run clean",
"build:all": "yarn workspaces foreach -pv --topological-dev run build",
"test:all": "yarn workspaces foreach -pv run test",
"release:all": "yarn workspaces foreach -pv --exclude 'react-dnd-parent' --exclude '@react-dnd/build' --exclude 'react-dnd-documentation' --exclude 'react-dnd-examples-hooks' --exclude 'react-dnd-examples-decorators' -pv npm publish --tolerate-republish",
"lint": "run-s 'lint:*'",
"jest": "jest",
"jest:watch": "jest --watch",
"jest:coverage": "jest --coverage",
"lint:code": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint:spelling": "mdspell 'packages/documentation/docsite/markdown/**/*.md' --en-us --report",
"lint:tone": "alex .",
"lint:formatting": "pretty-quick --check",
"build_docsite": "yarn build:docsite",
"changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s -r 0",
"ci": "npm-run-all -s build:all -p test:all lint jest:coverage build_docsite -s git-is-clean",
"prettify:source": "prettier 'packages/*/*/src/**/*.ts*'",
"prettify": "pretty-quick --fix",
"precommit:lint": "lint-staged",
"precommit:format": "pretty-quick --staged",
"watch": "yarn workspaces foreach -pvi run watch",
"git-is-clean": "git diff-index --quiet HEAD"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/testing-library__jest-dom": "^5.9.5",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"alex": "^9.1.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-no-for-of-loops": "^1.0.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.1.3",
"inquirer": "^7.3.3",
"jest": "~26.6.3",
"jest-environment-jsdom": "^26.6.2",
"lint-staged": "^10.5.4",
"markdown-spellcheck": "^1.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react-dnd": "workspace:packages/react-dnd",
"react-dnd-html5-backend": "workspace:packages/backend-html5",
"react-dnd-test-backend": "workspace:packages/backend-test",
"react-dnd-test-utils": "workspace:packages/test-utils",
"react-dnd-touch-backend": "workspace:packages/backend-touch",
"rimraf": "^3.0.2",
"typescript": "^4.1.5"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.1"
}
}