forked from minop1205/react-dnd-treeview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.39 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
{
"name": "@minoru/react-dnd-treeview",
"description": "A draggable / droppable React-based treeview component.",
"version": "1.2.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/minop1205/react-dnd-treeview.git"
},
"author": "Minoru Okuyama <okuyama@analogic.jp> (https://github.com/minop1205/)",
"homepage": "https://github.com/minop1205/react-dnd-treeview",
"keywords": [
"drag and drop",
"dnd",
"react",
"treeview",
"component",
"material-ui"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"immer": "^9.0.1",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.1.2",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.41",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-webpack": "^0.12.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.1",
"husky": "^4.2.5",
"jest": "^26.6.3",
"npm-check-updates": "^7.0.1",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"source-map-loader": "^1.0.0",
"ts-jest": "^26.4.3",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"scripts": {
"build": "npx tsc",
"watch": "npx tsc -w",
"lint": "npx tsc -p . --noEmit && npx eslint --ext .tsx --ext .ts --fix src/",
"prepublish": "rm -rf ./dist && npm run build",
"test": "jest"
},
"bugs": {
"url": "https://github.com/minop1205/react-dnd-treeview/issues",
"email": "okuyama@analogic.jp"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}