mirror of
https://github.com/cypress-io/cypress.git
synced 2026-03-13 21:00:48 -05:00
- Add `@packages/data-context` - Add `yarn gulp makePackage` for scaffolding a new server package - Removes `nexus-decorators` in favor of regular Nexus, creating better separation between data & schema - Possible to launch project in different browser types Co-authored-by: Jessica Sachs <jess@jessicasachs.io> Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Cesar <cesaravitia@outlook.com>
26 lines
908 B
JSON
26 lines
908 B
JSON
{
|
|
"name": "@packages/data-context",
|
|
"version": "0.0.0-development",
|
|
"description": "Centralized data access for the Cypress application",
|
|
"main": "index.js",
|
|
"browser": "src/index.ts",
|
|
"scripts": {
|
|
"build-prod": "tsc || echo 'built, with errors'",
|
|
"check-ts": "tsc --noEmit",
|
|
"clean-deps": "rimraf node_modules",
|
|
"clean": "rimraf ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/**/*.js || echo 'cleaned'",
|
|
"test-unit": "mocha -r @packages/ts/register test/unit/**/*.spec.ts --config ./test/.mocharc.js --exit",
|
|
"test-integration": "mocha -r @packages/ts/register test/integration/**/*.spec.ts --config ./test/.mocharc.js --exit"
|
|
},
|
|
"dependencies": {
|
|
"dataloader": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@packages/ts": "0.0.0-development",
|
|
"@packages/types": "0.0.0-development",
|
|
"mocha": "7.0.1",
|
|
"rimraf": "3.0.2"
|
|
},
|
|
"types": "src/index.ts"
|
|
}
|