forked from kevenleone/app-builder-cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 977 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
{
"name": "app-builder-cypress",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/kevenleone/app-builder-cypress.git",
"author": "Keven <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"cypress:run": "yarn workspace @app-builder-cypress/cypress cypress:run",
"cypress:open": "yarn workspace @app-builder-cypress/cypress cypress:open",
"start:frontend": "yarn workspace @app-builder-cypress/frontend start",
"start:backend": "yarn workspace @app-builder-cypress/backend dev",
"migrate": "yarn workspace @app-builder-cypress/backend migrate",
"studio": "yarn workspace @app-builder-cypress/backend studio",
"format:frontend": "eslint packages/frontend/**/*.ts --fix",
"format": "eslint packages/backend/src/* --ext .ts --fix"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@app-builder-cypress/eslint-config-node": "*"
}
}