forked from chrisjpatty/flume
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.08 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.08 KB
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
{
"author": "zdllucky",
"dependencies": {
"@reach/auto-id": "^0.10.5",
"@react-hook/debounce": "^4.0.0",
"d3-shape": "^3.0.1",
"lodash": "^4.17.15",
"md5": "2.3.0",
"nanoid": "^2.1.11",
"react-ds": "^1.13.0",
"react-onclickout": "^2.0.8",
"react-perfect-scrollbar": "^1.5.8"
},
"description": "A node editor for React",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.9",
"@babel/plugin-external-helpers": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "7.14.7",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-url": "^6.1.0",
"@svgr/rollup": "^5.5.0",
"@testing-library/dom": "^7.20.0",
"@testing-library/react": "^10.4.3",
"concurrently": "^6.3.0",
"cross-env": "^5.1.4",
"cypress": "^4.9.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-flowtype": "^5.8.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^1.2.0",
"jest-puppeteer": "^4.4.0",
"np": "^7.2.0",
"postcss": "^8.3.5",
"postcss-inline-svg": "^5.0.0",
"postcss-nested": "^5.0.5",
"prettier": "^2.4.1",
"react-scripts": "^4.0.3",
"rollup": "^2.52.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"wait-on": "^5.2.1"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"homepage": "https://flume.dev",
"jsnext:main": "dist/index.es.js",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"name": "flume",
"files": [
"dist"
],
"np": {
"testScript": "test"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"private": true,
"repository": "Seiko-Labs/flume",
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom && npx cypress run",
"lint": "eslint . --cache --ext .js,.jsx",
"test:watch": "react-scripts test --env=jsdom",
"build": "rollup -c",
"start": "concurrently \"yarn --cwd example/ run start\" \"rollup -cw\"",
"start_separate": "rollup -c -w",
"release": "npx np",
"postinstall_hidden": "yarn install --silent --ignore-scripts --pure-lockfile && yarn build"
},
"version": "0.20.1",
"resolutions": {
"**/coa": "2.0.2"
}
}