mirror of
https://github.com/harness/drone.git
synced 2025-05-01 05:00:00 +00:00
27 lines
653 B
JSON
27 lines
653 B
JSON
{
|
|
"name": "cypress-tests",
|
|
"private": "true",
|
|
"scripts": {
|
|
"cypress:open": "cypress open",
|
|
"serve": "node server.js",
|
|
"serve:ar": "node dist/server/index.js",
|
|
"build:ar": "tsc",
|
|
"dev": "nodemon --watch 'server/**/*.ts' --exec 'ts-node' server/index.ts"
|
|
},
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"@testing-library/cypress": "^8.0.3",
|
|
"child_process": "^1.0.2",
|
|
"cypress": "^11.1.0",
|
|
"express": "^4.19.2",
|
|
"typescript": "^4.8.4",
|
|
"wait-on": "^6.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.14.10",
|
|
"nodemon": "^3.1.4",
|
|
"ts-node": "^10.9.2"
|
|
}
|
|
}
|