-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "with-dnd-context",
"version": "1.0.4",
"description": "A HOC solution for backend resuage issue in react-dnd",
"main": "./lib/index.js",
"scripts": {
"build": "rm -rf ./lib && tsc -p ./tsconfig.json",
"prepublish": "npm run build",
"pub:major": "npm version major && npm publish",
"pub:minor": "npm version minor && npm publish",
"pub:patch": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/n0ruSh/with-dnd-context.git"
},
"bugs": {
"url": "https://github.com/n0ruSh/with-dnd-context/issues"
},
"author": "n0ruSh",
"license": "MIT",
"dependencies": {
"dnd-core": "^7.4.4",
"react": "^16.8.6",
"react-dnd": "^7.4.5",
"react-dnd-html5-backend": "^7.4.4"
},
"files": [
"lib"
],
"keywords": [
"react-dnd",
"backend reuse"
],
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-angular": "^7.6.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/react": "^16.8.17",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"typescript": "^3.4.5"
}
}