forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"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 && yarn -s tslint",
"clean-deps": "rimraf node_modules",
"tslint": "tslint --config ../ts/tslint.json --project .",
"clean": "rimraf --glob \"./{src,test}/**/*.js\"",
"test": "yarn test-unit",
"test-unit": "mocha -r @packages/ts/register --config ./test/.mocharc.js --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"lint": "eslint --ext .js,.ts,.json, ."
},
"dependencies": {
"@babel/code-frame": "7.8.3",
"@babel/generator": "7.17.9",
"@babel/parser": "7.13.0",
"@graphql-tools/batch-execute": "^8.4.6",
"@packages/telemetry": "0.0.0-development",
"@urql/core": "2.4.4",
"@urql/exchange-execute": "1.1.0",
"@urql/exchange-graphcache": "4.3.6",
"ast-types": "^0.14.2",
"chokidar": "3.5.1",
"common-path-prefix": "3.0.0",
"cross-fetch": "^3.1.4",
"dataloader": "^2.0.0",
"dayjs": "^1.9.3",
"dedent": "^0.7.0",
"ejs": "^3.1.8",
"endent": "2.0.1",
"execa": "1.0.0",
"front-matter": "^4.0.2",
"fs-extra": "8.1.0",
"getenv": "1.0.0",
"globby": "^11.0.1",
"graphql": "^15.5.1",
"isbinaryfile": "^4.0.8",
"launch-editor": "2.2.1",
"lodash": "4.17.21",
"micromatch": "4.0.4",
"node-machine-id": "1.1.12",
"p-defer": "^3.0.0",
"parse-glob": "3.0.4",
"prettier": "2.5.1",
"randexp": "0.5.3",
"randomstring": "1.1.5",
"react-docgen": "6.0.0-alpha.3",
"semver": "7.3.2",
"simple-git": "3.16.0",
"stringify-object": "^3.0.0",
"underscore.string": "^3.3.6",
"wonka": "^4.0.15"
},
"devDependencies": {
"@babel/types": "7.17.0",
"@packages/config": "0.0.0-development",
"@packages/errors": "0.0.0-development",
"@packages/example": "0.0.0-development",
"@packages/network": "0.0.0-development",
"@packages/resolve-dist": "0.0.0-development",
"@packages/root": "0.0.0-development",
"@packages/ts": "0.0.0-development",
"@packages/types": "0.0.0-development",
"@tooling/system-tests": "0.0.0-development",
"@types/babel__code-frame": "^7.0.3",
"@types/dedent": "^0.7.0",
"@types/ejs": "^3.1.2",
"@types/fs-extra": "^8.0.1",
"@types/micromatch": "4.0.2",
"@types/mocha": "^8.0.3",
"@types/parse-glob": "3.0.29",
"@types/prettier": "2.4.3",
"@types/sinon": "10.0.11",
"@types/sinon-chai": "3.2.8",
"@types/stringify-object": "^3.0.0",
"mocha": "7.0.1",
"mocha-junit-reporter": "2.2.0",
"mocha-multi-reporters": "1.5.1",
"sinon": "13.0.2",
"sinon-chai": "3.7.0",
"tslint": "^6.1.3"
},
"files": [
"src"
],
"types": "src/index.ts"
}