forked from LekoArts/gatsby-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 3.02 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"private": true,
"name": "@lekoarts/gatsby-themes",
"description": "My open-source collection of free Gatsby themes",
"author": "LekoArts",
"workspaces": [
"themes/*",
"examples/*",
"packages/*"
],
"scripts": {
"bootstrap": "yarn install && yarn packages:build",
"packages:build": "cross-env FORCE_COLOR=1 yarn workspaces foreach --parallel --interlaced run package:build",
"packages:watch": "cross-env FORCE_COLOR=1 yarn workspaces foreach --parallel --interlaced run package:watch",
"typecheck": "tsc --noEmit",
"typecheck:ci": "tsc -p tsconfig.ci.json --noEmit",
"lint": "eslint . --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx,.js,.mdx",
"lint:fix": "yarn lint --fix",
"format": "prettier \"**/*.{md,mdx,json,yaml}\" --write",
"test:watch": "vitest watch",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage",
"plop": "plop",
"cy:run": "cross-env CYPRESS_baseUrl=http://localhost:9000 cypress run --browser chrome",
"cy:open": "cypress open --browser chrome --e2e",
"start-server-and-test": "start-server-and-test",
"changeset": "changeset",
"version-packages": "changeset version",
"version-packages:ci": "changeset version && yarn install --mode update-lockfile",
"release": "yarn packages:build && changeset publish",
"prepare": "husky install",
"update-renovate": "node -r @swc-node/register ./scripts/renovate-config-generator.ts",
"postinstall": "yarn packages:build"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.2",
"@swc-node/register": "^1.5.4",
"@swc/core": "^1.3.11",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/chroma-js": "^2.1.4",
"@types/fs-extra": "^9.0.13",
"@types/loadable__component": "^5.13.4",
"@types/node": "^18.11.9",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/styled-system": "^5.1.15",
"@types/styled-system__css": "^5.0.17",
"@types/three": "^0.144.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitest/coverage-c8": "^0.24.5",
"c8": "^7.12.0",
"cross-env": "^7.0.3",
"cypress": "^10.11.0",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^10.1.0",
"gatsby-cypress": "^3.0.0",
"glob": "^8.0.3",
"happy-dom": "^6.0.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"plop": "^3.1.1",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"typescript": "^4.8.4",
"vitest": "^0.24.5"
},
"resolutions": {
"cypress": "^10.11.0"
},
"packageManager": "[email protected]"
}