-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.76 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
{
"name": "@sensilla-cloud/react-file-tree",
"version": "1.0.8",
"description": "Virtualized tree for displaying hierarchy in a traditional file-tree format",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "rollup -c && sass src/tree.scss lib/index.css --no-source-map --style compressed",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sensilla-cloud/react-file-tree.git"
},
"keywords": [
"React",
"File",
"Tree",
"Virtual",
"List",
"Hierarchy",
"Children",
"Parent"
],
"author": "Sensilla Cloud",
"license": "MIT",
"bugs": {
"url": "https://github.com/sensilla-cloud/react-file-tree/issues"
},
"homepage": "https://github.com/sensilla-cloud/react-file-tree#readme",
"devDependencies": {
"@babel/core": "^7.21.3",
"@fortawesome/fontawesome-free": "^6.4.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-storysource": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.16",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/testing-library": "^0.0.13",
"@tsconfig/recommended": "^1.0.2",
"@types/react": "^18.0.30",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"babel-loader": "^9.1.2",
"css-loader": "6.7.3",
"eslint": "^8.36.0",
"prettier": "^2.8.7",
"prettier-eslint": "^15.0.1",
"react": "^18.2.0",
"react-docgen-typescript-plugin": "^1.0.5",
"react-dom": "^18.2.0",
"rollup": "^3.20.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.60.0",
"sass-loader": "13.2.2",
"storybook": "^6.5.16",
"style-loader": "3.3.2",
"typescript": "^5.0.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@af-utils/react-virtual-headless": "^0.0.49",
"@af-utils/react-virtual-list": "^0.0.52",
"@af-utils/styled": "^0.0.20",
"prop-types": "^15.8.1",
"use-sync-external-store": "^1.2.0"
}
}