-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
27 lines (27 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
{
"name": "cypress-for-everything",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/riccardogiorato/cypress-for-everything.git",
"author": "Riccardo Giorato <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "doppler run -- cypress open",
"test": "cypress run",
"merge": "yarn ts-node ./src/merge-cypress-xml.ts",
"upgradeAll": "yarn upgrade-interactive --latest",
"refreshGmailToken": "yarn ts-node ./cypress/plugins/refreshGmailToken"
},
"devDependencies": {
"@types/node": "^15.14.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"cypress": "^8.3.1",
"gmail-tester": "^1.3.2",
"junit-report-merger": "^3.0.1",
"structured-data-testing-tool": "^4.5.0",
"xml-js": "^1.6.11"
}
}