-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.29 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
57
58
59
60
61
62
63
64
65
{
"private": true,
"name": "root",
"description": "Monorepo for @alexjorgef/gatsby-source-discogs",
"author": "Alexandre Ferreira <[email protected]>",
"workspaces": [
"demo",
"plugin"
],
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@playwright/test": "^1.37.1",
"@swc-node/register": "^1.6.7",
"@types/node": "^18.17.11",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^10.1.0",
"handlebars": "^4.7.8",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"lodash.startcase": "^4.4.0",
"markdown-toc": "^1.2.0",
"prettier": "^3.0.2",
"typescript": "^5.2.2",
"vitest": "^0.34.3"
},
"scripts": {
"clean": "yarn workspace demo clean",
"develop": "yarn workspace demo develop",
"build": "yarn workspace demo build",
"serve": "yarn workspace demo serve",
"package:watch": "yarn workspace @alexjorgef/gatsby-source-discogs watch",
"package:build": "yarn workspace @alexjorgef/gatsby-source-discogs prepare",
"typecheck": "tsc --noEmit",
"test:watch": "vitest watch",
"test:run": "vitest run",
"playwright": "playwright test",
"playwright:debug": "playwright test --debug",
"playwright:init": "playwright install chromium",
"e2e:develop": "yarn playwright:debug",
"e2e:build": "cross-env IS_BUILD=y yarn playwright",
"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",
"postinstall": "husky install && yarn package:build"
},
"packageManager": "[email protected]"
}