This repository has been archived by the owner on Jul 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.75 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"mdx/*",
"themes/*",
"examples/*"
],
"scripts": {
"format": "prettier --write '{**/*.{js,jsx,ts,tsx},*.{ts,js,json}}'",
"lint": "eslint .",
"publish": "lerna publish --conventional-commits",
"publish:prerelease": "npx lerna publish --conventional-commits --conventional-prerelease --force-publish --no-git-tag-version",
"check-dependencies": "lerna exec \"pwd && npx depcheck --ignore-dirs '.cache,public' .\" --no-bail --concurrency 1",
"test": "jest",
"examples:clean": "npx lerna exec 'gatsby clean' --stream --scope 'gatsby-mdx-suite-example*'",
"examples:build": "npx lerna run build --concurrency 1 --stream --scope 'gatsby-mdx-suite-example*'",
"examples:test": "npx lerna run test --concurrency 1 --stream --scope 'gatsby-mdx-suite-example*'",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"babel-eslint": "10.1.0",
"babel-preset-gatsby": "2.11.1",
"depcheck": "1.4.3",
"eslint": "8.17.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.1",
"jest": "27.5.1",
"lerna": "5.1.4",
"lint-staged": "13.0.2",
"prettier": "2.7.1",
"typescript": "4.7.3"
},
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc",
"eslint --fix"
],
"*.json": [
"prettier --write --config .prettierrc"
]
}
}