forked from react-dnd/react-dnd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.49 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
{
"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 <[email protected]> (http://github.com/gaearon)",
"contributors": [
"Chris Trevino <[email protected]> (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 -pv run clean",
"build_all": "yarn workspaces foreach -pv --topological-dev run build",
"test_all": "yarn workspaces foreach -pv run test",
"build_docsite": "yarn build:docsite",
"unit_test": "jest",
"unit_test:watch": "jest --watch",
"unit_test: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",
"lint": "run-s 'lint:*'",
"changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s -r 0",
"ci": "npm-run-all -s build_all -p test_all lint unit_test: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.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"alex": "^9.1.0",
"conventional-changelog-cli": "^2.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-no-for-of-loops": "^1.0.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"inquirer": "^7.3.3",
"jest": "~26.6.3",
"jest-environment-jsdom": "^26.6.2",
"lint-staged": "^10.5.1",
"markdown-spellcheck": "^1.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"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.0.5"
},
"resolutions": {
"@types/react": "16.9.51",
"@types/react-dom": "16.9.8"
}
}