This repository has been archived by the owner on Aug 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
101 lines (101 loc) · 3.21 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
{
"name": "victory-docs",
"description": "Documentation site for Victory by Formidable",
"version": "9.3.1",
"author": "Formidable <[email protected]>",
"main": "static.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/FormidableLabs/victory-docs.git"
},
"bugs": {
"url": "https://github.com/FormidableLabs/victory-docs/issues"
},
"homepage": "https://github.com/FormidableLabs/victory-docs#readme",
"dependencies": {
"@juggle/resize-observer": "^3.0.2",
"axios": "^0.19.2",
"babel-standalone": "^6.26.0",
"chokidar": "2.0.3",
"component-playground": "^3.2.1",
"d3-array": "^2.4.0",
"d3-scale": "^3.2.1",
"d3-time": "^1.1.0",
"date-fns": "^2.12.0",
"formidable-oss-badges": "^0.3.4",
"fuse.js": "^3.2.1",
"lodash": "^4.17.15",
"prismjs": "^1.15.0",
"prop-types": "^15.6.2",
"react": "^16.8.0",
"react-cool-inview": "^0.5.14",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.8.0",
"react-ga": "^2.4.1",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.12.3",
"react-inlinesvg": "^0.8.1",
"react-markdown": "^3.1.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-router-ga": "^1.0.0",
"react-scroll": "^1.7.15",
"react-static": "^7.0.0",
"react-static-plugin-react-router": "^7.0.0",
"react-static-plugin-sitemap": "^7.0.0",
"react-static-plugin-styled-components": "^7.0.0",
"styled-components": "^5.1.0",
"styled-normalize": "^8.0.6",
"unist-util-visit": "^1.4.0",
"victory": "^34.3.10"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"btoa": "^1.2.1",
"cross-env": "^6.0.3",
"eslint-config-formidable": "^4.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react-tools": "1.x.x",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"github-slugger": "^1.2.1",
"gray-matter": "^3.1.1",
"js-yaml": "^3.12.0",
"klaw": "^3.0.0",
"mdast-util-to-string": "^1.0.5",
"prettier": "^1.19.1",
"puppeteer": "^1.13.0",
"remark": "^9.0.0",
"remark-frontmatter": "^1.3.0",
"remark-slug": "^5.1.1",
"serve": "^10.0.0",
"unist-util-select": "^1.5.0"
},
"resolutions": {
"react-hot-loader/source-map": "^0.8.0-beta.0"
},
"keywords": [
"react-static",
"victory",
"charting",
"docs"
],
"license": "MIT",
"scripts": {
"start": "node --max-old-space-size=2048 node_modules/react-static/bin/react-static start",
"stage": "cross-env REACT_STATIC_STAGING=true react-static build --staging",
"build": "react-static build",
"stage-debug": "react-static build --staging --debug",
"analyze": "react-static build --analyze",
"serve": "serve dist -l 3000",
"prettier": "npx prettier --write '**/*.js'",
"lint": "eslint 'src/**/*.js' 'static-config-*/*.js' 'src/**/*.js' static.config.js",
"lint:md": "remark .",
"stage-and-serve": "yarn stage && yarn serve",
"test-local": "node test/formidable-nav-integration.js && node test/victory-nav-integration.js",
"preversion": "yarn lint",
"version": "yarn build"
}
}