forked from ChristopherBiscardi/gatsby-mdx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.39 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
{
"name": "gatsby-mdx-packages",
"private": true,
"version": "0.0.1",
"description": "mdx integrations and examples for gatsby",
"main": "index.js",
"license": "MIT",
"workspaces": ["examples/*", "packages/*", "ui-extensions/*", "components/*"],
"scripts": {
"precommit": "lint-staged",
"prepublish": "eslint .",
"publish-ci": "lerna publish -y --canary --preid ci --npm-tag=ci",
"test": "jest",
"lint": "eslint ."
},
"lint-staged": {
"*.{js,jsx}": ["eslint --fix", "prettier --write", "git add"],
"*.json": ["prettier --parser json --write", "git add"],
"*.{graphql,gql}": ["prettier --parser graphql --write", "git add"],
"*.{md,markdown}": ["prettier --parser markdown --write", "git add"],
"*.{css,scss}": ["prettier --parser css --write", "git add"]
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lerna": "^3.4.0",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"react-test-renderer": "^16.5.2"
},
"jest": {
"testPathIgnorePatterns": ["/node_modules/", ".cache"]
}
}