-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
103 lines (103 loc) · 2.94 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
{
"name": "flume",
"version": "1.0.4",
"description": "A node editor for React",
"author": "chrisjpatty",
"license": "MIT",
"homepage": "https://flume.dev",
"repository": "chrisjpatty/flume",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom && npx cypress run",
"test:watch": "react-scripts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w",
"release": "npx np"
},
"np": {
"testScript": "test"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-external-helpers": "^7.16.7",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.2",
"@svgr/rollup": "^2.4.1",
"@testing-library/dom": "^7.20.0",
"@testing-library/react": "^14.0.0",
"@types/d3-shape": "^3.0.2",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.5",
"@types/react-portal": "^4.0.4",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.4",
"cypress": "^4.9.0",
"eslint": "7",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "1.x",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-tsdoc": "^0.2.16",
"gh-pages": "^1.2.0",
"jest-puppeteer": "^4.4.0",
"np": "^7.2.0",
"postcss-nested": "^4.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.0",
"rollup": "^2.70.2",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-url": "^1.4.0",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"wait-on": "^5.2.1",
"y18n": "^5.0.8"
},
"files": [
"dist"
],
"dependencies": {
"@reach/auto-id": "^0.10.5",
"d3-shape": "^1.3.7",
"lodash": "^4.17.15",
"nanoid": "^3.3.2",
"react-portal": "^4.2.1",
"rollup-plugin-typescript2": "^0.31.2"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!(nanoid)/)"
]
}
}