-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
108 lines (108 loc) · 2.95 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
{
"name": "react-beautiful-tree",
"version": "1.0.3",
"description": "Beautiful tree component for your React apps!",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"lint": "standard",
"format": "prettier-standard --format",
"test": "jest --coverage",
"storybook": "start-storybook -p 8000 -c .storybook",
"build-storybook": "build-storybook -c .storybook -o static"
},
"keywords": [],
"author": "Tarik Caliskan",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.14.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@storybook/react": "^6.2.9",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.4",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^17.0.3",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/react-window": "^1.8.3",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.2.2",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"rollup": "^2.46.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"standard": "^16.0.3",
"standard-prettier": "^1.0.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"dist/"
]
},
"standard": {
"ignore": [
"node_modules/",
"dist/"
]
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"globals": [
"describe",
"it",
"test",
"expect",
"afterAll",
"jest"
],
"dependencies": {
"css-box-model": "^1.2.1",
"react-beautiful-dnd": "^13.1.0",
"react-virtualized-auto-sizer": "^1.0.5",
"react-window": "^1.8.6"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tarikcaliskan/react-beautiful-tree.git"
},
"bugs": {
"url": "https://github.com/tarikcaliskan/react-beautiful-tree/issues"
},
"homepage": "https://github.com/tarikcaliskan/react-beautiful-tree#readme"
}