forked from FormidableLabs/victory-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·123 lines (123 loc) · 3.69 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "victory-docs",
"description": "Documentation site for Victory by Formidable",
"version": "7.2.1",
"author": "Formidable <[email protected]>",
"main": "webpack.config.dev.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": {
"component-playground": "^2.1.0",
"formidable-landers": "^8.1.8",
"fuse.js": "^3.2.0",
"gatsby": "^1.9.261",
"gatsby-link": "^1.6.44",
"gatsby-plugin-google-analytics": "^1.0.31",
"gatsby-plugin-manifest": "^1.0.22",
"gatsby-plugin-nprogress": "^1.0.14",
"gatsby-plugin-postcss-sass": "^1.0.20",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-sharp": "^1.6.44",
"gatsby-plugin-sitemap": "^1.2.23",
"gatsby-remark-autolink-headers": "^1.4.18",
"gatsby-remark-copy-linked-files": "^1.5.32",
"gatsby-remark-images": "^1.5.63",
"gatsby-remark-prismjs": "1.2.23",
"gatsby-remark-responsive-iframe": "^1.4.18",
"gatsby-remark-smartypants": "^1.4.12",
"gatsby-source-filesystem": "^1.5.36",
"gatsby-transformer-remark": "^1.7.41",
"lodash": "^4.17.5",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^10.0.0",
"postcss-inline-svg": "^3.0.0",
"postcss-url": "^7.1.2",
"prop-types": "^15.5.8",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "^5.1.3",
"react-live": "^1.7.1",
"react-share": "^1.15.1",
"react-twitter-widgets": "^1.4.0",
"victory": "~0.27.2"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cli-glob": "^0.1.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.3",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-formidable": "^3.0.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"jest": "^21.2.1",
"normalize.css": "^7.0.0",
"prettier": "^1.5.3",
"remark-cli": "^4.0.0",
"remark-preset-lint-recommended": "^3.0.1",
"stylefmt": "^6.0.0",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0"
},
"keywords": [
"gatsby",
"victory",
"charting",
"docs"
],
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"clean": "rm -rf public .cache",
"lint:js": "eslint --ext .js .",
"lint:md": "remark .",
"lint": "npm run lint:js && npm run lint:md",
"test": "jest",
"format:js": "prettier '**/*.js' --write --arrow-parens always",
"preversion": "npm run lint && npm run test",
"version": "npm run clean && npm run build:pp"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file-mock.js",
"^(?!.*\\.module\\.css$).*\\.css$": "<rootDir>/__mocks__/style-mock.js"
},
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/.cache/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
false
],
[
"remark-lint-list-item-bullet-indent",
false
]
]
}
}