generated from LekoArts/gatsby-plugin-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.74 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
{
"private": true,
"name": "root",
"description": "Boilerplate for Gatsby plugins",
"author": "LekoArts <lekoarts@gmail.com>",
"workspaces": [
"demo",
"plugin"
],
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4",
"vitest": "^0.27.2"
},
"scripts": {
"develop": "yarn workspace demo develop",
"build": "yarn workspace demo build",
"serve": "yarn workspace demo serve",
"package:watch": "yarn workspace gatsby-plugin-webpack-statoscope watch",
"package:build": "yarn workspace gatsby-plugin-webpack-statoscope prepare",
"typecheck": "tsc --noEmit",
"test:watch": "vitest watch",
"test:run": "vitest run",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js",
"lint:fix": "yarn lint --fix",
"format": "prettier \"**/*.{md,json,yaml}\" --write --ignore-path .gitignore",
"changeset": "changeset",
"release": "changeset publish",
"release-update-lockfile": "changeset version && yarn install --mode update-lockfile",
"prepare": "husky install"
},
"packageManager": "yarn@3.2.2"
}