-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.46 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
{
"name": "react-tree-visualizer",
"version": "0.0.1",
"description": "A react component library for visualizing tree data structures",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 4442",
"start": "start-storybook -p $PORT -h 0.0.0.0",
"build-storybook": "build-storybook -o devapp-build",
"test": "jest",
"lint": "eslint \"src/**/*.js\" \"src/**/*.jsx\"",
"format": "eslint --fix \"src/**/*.js\" \"src/**/*.jsx\""
},
"author": "Omar ElGaml",
"license": "ISC",
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-svg-pan-zoom": "^3.10.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-typescript": "^7.14.5",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addon-storysource": "^6.5.9",
"@storybook/react": "^6.5.9",
"@types/jest": "^29.0.2",
"@typescript-eslint/parser": "^4.28.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.6.0",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.5.11",
"eslint-plugin-typescript": "^0.14.0",
"file-loader": "^6.0.0",
"jest": "^26.6.3",
"minireset.css": "^0.0.3",
"prettier": "^2.2.1",
"react": "^18.1.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^18.1.0",
"react-svg-pan-zoom": "^3.10.0",
"style-loader": "^1.2.1",
"ts-loader": "^8.2.0",
"typescript": "^4.3.4",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shenato/react-tree-visualizer.git"
},
"bugs": {
"url": "https://github.com/Shenato/react-tree-visualizer/issues"
},
"homepage": "https://github.com/Shenato/react-tree-visualizer#readme"
}