This repository has been archived by the owner on Jun 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
69 lines (69 loc) · 3.9 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
{
"private": true,
"workspaces": [
"starters/*",
"themes/*",
"www/"
],
"name": "gatsby-theme-catalyst",
"devDependencies": {
"@changesets/cli": "^2.17.0",
"@testing-library/cypress": "^8.0.1",
"axe-core": "^4.3.3",
"cypress": "^8.6.0",
"cypress-axe": "^0.13.0",
"gatsby-cypress": "^1.14.0",
"start-server-and-test": "^1.14.0"
},
"scripts": {
"publish-ci": "changeset publish",
"develop:core": "yarn workspace gatsby-starter-catalyst-core develop",
"develop:basic": "yarn workspace gatsby-starter-catalyst develop",
"develop:blog": "yarn workspace gatsby-starter-catalyst-blog develop",
"develop:stripe": "yarn workspace gatsby-starter-catalyst-stripe develop",
"develop:sanity": "yarn workspace gatsby-starter-catalyst-sanity develop",
"develop:hydrogen": "yarn workspace gatsby-starter-catalyst-hydrogen develop",
"develop:helium": "yarn workspace gatsby-starter-catalyst-helium develop",
"develop:lithium": "yarn workspace gatsby-starter-catalyst-lithium develop",
"develop:bery": "yarn workspace gatsby-starter-catalyst-bery develop",
"develop:www": "yarn workspace gatsby-catalyst-docs develop",
"build:core": "yarn workspace gatsby-starter-catalyst-core build",
"build:basic": "yarn workspace gatsby-starter-catalyst build",
"build:blog": "yarn workspace gatsby-starter-catalyst-blog build",
"build:sanity": "yarn workspace gatsby-starter-catalyst-sanity build",
"build:hydrogen": "yarn workspace gatsby-starter-catalyst-hydrogen build",
"build:helium": "yarn workspace gatsby-starter-catalyst-helium build",
"build:lithium": "yarn workspace gatsby-starter-catalyst-lithium build",
"build:bery": "yarn workspace gatsby-starter-catalyst-bery build",
"build:www": "yarn workspace gatsby-catalyst-docs build",
"serve:core": "yarn workspace gatsby-starter-catalyst-core serve",
"serve:basic": "yarn workspace gatsby-starter-catalyst serve",
"serve:blog": "yarn workspace gatsby-starter-catalyst-blog serve",
"serve:sanity": "yarn workspace gatsby-starter-catalyst-sanity serve",
"serve:hydrogen": "yarn workspace gatsby-starter-catalyst-hydrogen serve",
"serve:helium": "yarn workspace gatsby-starter-catalyst-helium serve",
"serve:lithium": "yarn workspace gatsby-starter-catalyst-lithium serve",
"serve:bery": "yarn workspace gatsby-starter-catalyst-bery serve",
"serve:www": "yarn workspace gatsby-catalyst-docs serve",
"clean:core": "yarn workspace gatsby-starter-catalyst-core clean",
"clean:basic": "yarn workspace gatsby-starter-catalyst clean",
"clean:blog": "yarn workspace gatsby-starter-catalyst-blog clean",
"clean:bery": "yarn workspace gatsby-starter-catalyst-bery clean",
"clean:sanity": "yarn workspace gatsby-starter-catalyst-sanity clean",
"clean:hydrogen": "yarn workspace gatsby-starter-catalyst-hydrogen clean",
"clean:helium": "yarn workspace gatsby-starter-catalyst-helium clean",
"clean:lithium": "yarn workspace gatsby-starter-catalyst-lithium clean",
"clean:www": "yarn workspace gatsby-catalyst-docs clean",
"test:core": "start-server-and-test develop:core http://localhost:8000 cy:open",
"test:basic": "start-server-and-test develop:basic http://localhost:8000 cy:open",
"test:blog": "start-server-and-test develop:blog http://localhost:8000 cy:open",
"test:sanity": "start-server-and-test develop:sanity http://localhost:8000 cy:open",
"test:hydrogen": "start-server-and-test develop:hydrogen http://localhost:8000 cy:open",
"test:helium": "start-server-and-test develop:helium http://localhost:8000 cy:open",
"test:lithium": "start-server-and-test develop:lithium http://localhost:8000 cy:open",
"test:bery": "start-server-and-test develop:bery http://localhost:8000 cy:open",
"test:www": "start-server-and-test develop:www http://localhost:8000 cy:open",
"cy:open": "cypress open",
"cy:run": "cypress run"
}
}