forked from adobe/aio-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.11 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
{
"private": true,
"name": "aio-theme-monorepo",
"workspaces": [
"example",
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@testing-library/cypress": "^8.0.3",
"axe-core": "^4.4.3",
"cypress": "^8.7.0",
"cypress-axe": "^0.14.0",
"gatsby-cypress": "^1.14.0",
"husky": "^8.0.1",
"lerna": "^5.1.8",
"start-server-and-test": "^1.14.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",
"build": "yarn workspace example build",
"serve": "yarn workspace example serve",
"clean": "yarn workspace example clean",
"format": "npx prettier --write '**/*.{js,json}'",
"cy:open": "cypress open",
"test:e2e": "start-server-and-test dev http://localhost:8000 cy:open"
},
"packageManager": "yarn@3.2.1"
}