-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
47 lines (47 loc) · 1.78 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
{
"private": true,
"name": "aio-theme-monorepo",
"workspaces": [
"example",
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@testing-library/cypress": "^9.0.0",
"axe-core": "^4.6.3",
"cypress": "^12.7.0",
"cypress-axe": "^1.4.0",
"gatsby-cypress": "^3.7.0",
"husky": "^8.0.3",
"lerna": "^6.5.1",
"prettier": "^2.8.4",
"start-server-and-test": "^2.0.0"
},
"scripts": {
"prepare": "husky install",
"start": "yarn workspace example start",
"start:prefix": "yarn workspace example start:prefix",
"dev": "yarn workspace example develop",
"dev:clean": "yarn workspace example clean && yarn workspace example develop",
"dev:https": "yarn workspace example develop:https",
"dev:https:local": "yarn workspace example gatsby develop --https --host local.corp.adobe.com",
"dev:https:ci": "yarn workspace example develop --https --host localhost.corp.adobe.com --port 9000 --key-file ./certs/key.key --cert-file ./certs/cert.crt",
"dev:schema": "yarn workspace example develop:schema",
"build": "yarn workspace example build",
"build:incremental": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true yarn workspace example build --log-pages",
"serve": "yarn workspace example serve",
"clean": "yarn workspace example clean",
"format": "npx prettier --write '**/*.{js,json}'",
"cy:open": "cypress open",
"test:e2e": "yarn clean && START_SERVER_AND_TEST_INSECURE=1 CYPRESS_SUPPORT=y start-server-and-test dev:https https://localhost.corp.adobe.com:9000 cy:open"
},
"resolutions": {
"sharp": "0.33.0",
"gatsby-sharp": "1.12.0"
},
"packageManager": "[email protected]",
"dependencies": {
"http-proxy-middleware": "^3.0.0"
}
}