-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathpackage.json
109 lines (109 loc) · 3.32 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@tooling/system-tests",
"version": "0.0.0-development",
"description": "Internal cypress tests for running across multiple projects which have their own configuration for E2E and CT",
"private": true,
"main": "lib/fixtures.ts",
"browser": "lib/fixtureDirs.ts",
"scripts": {
"build": "node ./scripts/scaffold.js",
"clean-deps": "find . -depth -name node_modules -type d -exec rimraf {} \\;",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"preprojects:yarn:install": "yarn clean-deps",
"projects:yarn:install": "node ./scripts/projects-yarn-install.js",
"pretest": "yarn gulp ensureCloudValidations",
"test": "node ./scripts/run.js --glob-in-dir=\"{test,test-binary}\"",
"pretest:ci": "yarn gulp ensureCloudValidations",
"test:ci": "node ./scripts/run.js",
"type-check": "tsc --project .",
"update:snapshots": "SNAPSHOT_UPDATE=1 npm run test"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.3",
"@cypress/commit-info": "2.2.0",
"@cypress/debugging-proxy": "2.0.1",
"@cypress/request": "^3.0.6",
"@cypress/request-promise": "^5.0.0",
"@cypress/sinon-chai": "2.9.1",
"@cypress/webpack-preprocessor": "0.0.0-development",
"@ffprobe-installer/ffprobe": "2.1.2",
"@packages/https-proxy": "0.0.0-development",
"@packages/launcher": "0.0.0-development",
"@packages/network": "0.0.0-development",
"@packages/root": "0.0.0-development",
"@packages/server": "0.0.0-development",
"@packages/socket": "0.0.0-development",
"@packages/ts": "0.0.0-development",
"@types/chai": "4.2.15",
"@types/mocha": "9.1.0",
"babel-loader": "9.1.3",
"base64url": "^3.0.1",
"bluebird": "3.7.2",
"body-parser": "1.20.2",
"cachedir": "2.3.0",
"chai": "1.10.0",
"chai-as-promised": "7.1.1",
"chai-subset": "1.6.0",
"chai-uuid": "1.0.6",
"chalk": "2.4.2",
"chokidar": "3.5.1",
"common-tags": "1.8.0",
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"dayjs": "^1.9.3",
"debug": "^4.3.4",
"dedent": "^0.7.0",
"dockerode": "3.3.1",
"esbuild": "^0.15.3",
"execa": "4",
"express": "4.19.2",
"express-session": "1.16.1",
"express-useragent": "1.0.15",
"fluent-ffmpeg": "2.1.2",
"fs-extra": "9.1.0",
"glob": "7.2.0",
"https-proxy-agent": "3.0.1",
"human-interval": "1.0.0",
"image-size": "1.1.1",
"lazy-ass": "1.6.0",
"lodash": "^4.17.21",
"mocha": "7.1.0",
"mocha-banner": "1.1.2",
"mochawesome-1.5.2": "npm:[email protected]",
"mochawesome-2.3.1": "npm:[email protected]",
"mochawesome-3.0.1": "npm:[email protected]",
"mocked-env": "1.2.4",
"mockery": "2.1.0",
"morgan": "1.9.1",
"multer": "1.4.4",
"nock": "13.2.9",
"proxyquire": "2.1.3",
"semver": "7.5.3",
"sinon": "5.1.1",
"snap-shot-it": "7.9.3",
"ssestream": "1.0.1",
"supertest": "4.0.2",
"systeminformation": "5.21.7",
"temp-dir": "^2.0.0",
"webpack": "^5.88.2",
"ws": "5.2.4"
},
"types": "lib/fixtures.ts",
"license": "ISC",
"author": "",
"keywords": [],
"nx": {
"targets": {
"build": {
"outputs": [
"{projectRoot}/lib/fixtureDirs.ts"
],
"dependsOn": [
"!@packages/data-context:build"
]
}
}
}
}