forked from gatsby-uc/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.84 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
{
"name": "plugins",
"description": "Monorepo for plugins in the Gatsby User Collective",
"repository": "[email protected]:gatsby-uc/plugins.git",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"integration-tests/*"
],
"scripts": {
"ac": "yarn all-contributors",
"build": "yarn workspaces foreach -vpi --no-private run build",
"cs": "yarn changeset",
"format": "yarn test:format --write",
"lint": "yarn test:lint --fix",
"test:exports": "node scripts/gatsby-export-test.mjs",
"test:format": "yarn prettier \"**/*.{mjs,js,ts,md,json,yml,json,json5}\" --check",
"test:lint": "yarn eslint \"packages/**/*.{js,ts}\"",
"test:types": "yarn tsc",
"publish-ci": "yarn build && yarn changeset publish",
"postinstall": "yarn husky install",
"test": "yarn workspaces foreach -vp run pretest && yarn workspaces foreach -vp run test"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-react": "^7.22.3",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@hkdobrev/run-if-changed": "^0.3.1",
"@tsconfig/node18": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"all-contributors-cli": "^6.24.0",
"chalk": "^5.2.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unicorn": "^45.0.2",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"renovate": "^34.157.0",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]",
"lint-staged": {
"**/*.{mjs,js,ts,md,json,yml,json5}": "prettier --write",
"packages/**/*.{js,ts}": "eslint --fix"
},
"run-if-changed": {
"renovate.json5": "yarn renovate-config-validator"
}
}