-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.84 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
{
"name": "react-erd",
"version": "1.0.9",
"author": "CNimmo16",
"keywords": [
"Entity Relationship Diagram",
"React",
"ERD",
"Database",
"Database Diagram"
],
"repository": {
"type": "git",
"url": "https://github.com/CNimmo16/react-erd.git"
},
"license": "MIT",
"files": [
"dist",
"types"
],
"exports": {
".": "./dist/RelationshipDiagram.js",
"./style.css": "./dist/style.css"
},
"types": "types/RelationshipDiagram.d.ts",
"scripts": {
"check:lint": "eslint ./src/**/*.ts*",
"check:lint:fix": "eslint ./src/**/*.ts* --fix",
"check:style": "prettier --check .",
"check:style:fix": "prettier --write .",
"check:types": "tsc",
"storybook": "concurrently 'npm:watch:styles' 'start-storybook -p 6006'",
"build-storybook": "build-storybook",
"build": "rimraf ./dist && concurrently 'npm:build:*'",
"build:esm": "rimraf ./dist && babel --extensions .ts,.tsx ./src --out-dir dist",
"build:types": "rimraf ./types && tsc --project ./tsconfig.types.json",
"build:styles": "rimraf ./dist/style.css && sass --load-path=node_modules/reactflow src/RelationshipDiagram.scss dist/style.css",
"watch:styles": "yarn build:styles --watch",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.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/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"babel-loader": "^8.3.0",
"babel-plugin-const-enum": "^1.2.0",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"concurrently": "^7.6.0",
"css-loader": "^6.7.3",
"d3-scale-chromatic": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"prettier": "2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.4.0",
"storybook": "^6.5.16",
"style-loader": "^3.3.1",
"typescript": "^4.9.5",
"husky": "^8.0.0"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"@mdi/js": "^7.1.96",
"@mdi/react": "^1.6.1",
"reactflow": "^11.5.6",
"sass": "^1.58.3"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
}