forked from ahmedelkordy409/gatsby-theme-aio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 827 Bytes
/
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
{
"private": true,
"name": "gatsby-theme-aio-monorepo",
"workspaces": [
"example",
"packages/*"
],
"devDependencies": {
"@testing-library/cypress": "^7.0.1",
"axe-core": "^4.0.1",
"cypress": "^5.0.0",
"cypress-axe": "^0.10.0",
"gatsby-cypress": "^0.4.10",
"lerna": "^3.22.1",
"start-server-and-test": "^1.11.5"
},
"scripts": {
"start": "yarn workspace example start",
"start:prefix": "yarn workspace example start:prefix",
"dev": "yarn workspace example develop",
"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"
}
}