This repository has been archived by the owner on Apr 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
89 lines (89 loc) · 2.85 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": "react-flow-website",
"description": "",
"version": "1.0.0",
"author": "webkid",
"bugs": {
"url": "https://github.com/wbkd/react-flow/issues"
},
"browserslist": [
">0.25%",
"ie 11"
],
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@react-hook/size": "^2.1.2",
"@svgr/webpack": "^5.5.0",
"babel-polyfill": "^6.26.0",
"d3-array": "^3.0.1",
"d3-color": "^3.0.1",
"d3-scale": "^4.0.0",
"d3-shape": "^3.0.1",
"dagre": "^0.8.5",
"emotion-normalize": "^11.0.1",
"gatsby": "^3.8.1",
"gatsby-plugin-draft": "^0.1.0",
"gatsby-plugin-emotion": "^6.8.0",
"gatsby-plugin-image": "^1.8.0",
"gatsby-plugin-manifest": "^3.8.0",
"gatsby-plugin-mdx": "^2.8.0",
"gatsby-plugin-netlify": "^3.8.0",
"gatsby-plugin-react-helmet": "^4.8.0",
"gatsby-plugin-react-svg": "^3.0.1",
"gatsby-plugin-svgr": "^2.1.0",
"gatsby-remark-copy-linked-files": "^4.5.0",
"gatsby-remark-images": "^5.5.0",
"gatsby-remark-unwrap-images": "^1.0.2",
"gatsby-source-filesystem": "^3.8.0",
"gatsby-transformer-javascript-frontmatter": "^3.8.0",
"gatsby-transformer-json": "^3.8.0",
"gatsby-transformer-remark": "^4.5.0",
"localforage": "^1.9.0",
"popmotion": "^10.0.2",
"prism-react-renderer": "^1.2.1",
"rc-table": "^7.17.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-flow-renderer": "^9.6.9",
"react-helmet": "^6.1.0",
"reflexbox": "^4.0.6",
"remark-unwrap-images": "^2.1.0",
"slugify": "^1.5.3"
},
"devDependencies": {
"@octokit/rest": "^18.6.6",
"babel-preset-gatsby": "^1.8.0",
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.24.0",
"gatsby-cli": "^3.8.0",
"gatsby-plugin-sharp": "^3.8.0",
"gatsby-transformer-sharp": "^3.8.0",
"gh-pages": "^3.2.3",
"prettier": "^2.3.2",
"sharp": "^0.28.3"
},
"homepage": "https://reactflow.dev",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/wbkd/react-flow.git"
},
"scripts": {
"start": "npm run dev",
"dev": "gatsby develop -H 0.0.0.0",
"clean": "gatsby clean",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js"
}
}