-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
56 lines (56 loc) · 2 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
{
"name": "plugins",
"description": "Monorepo for plugins in the Gatsby User Collective",
"repository": "git@github.com:gatsby-uc/plugins.git",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"integration-tests/*"
],
"scripts": {
"prepare": "husky",
"ac": "yarn all-contributors",
"build": "yarn workspaces foreach -Avpi --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 -Avp run pretest && yarn workspaces foreach -Avp run test"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-react": "^7.26.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@hkdobrev/run-if-changed": "^0.6.3",
"@tsconfig/node20": "^20.1.4",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"all-contributors-cli": "^6.26.1",
"chalk": "^5.4.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-unicorn": "^56.0.1",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"renovate": "^39.0.0",
"typescript": "^5.7.2"
},
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728",
"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"
}
}