-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 827 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 827 Bytes
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
{
"name": "e2e_testing",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test:local": "HOST_APP=http://localhost:3000 HOST_API=https://devapi.legendtrading.com ts-node src/individual.test.ts",
"test:fedev": "HOST_APP=https://fedev.legendtrading.com HOST_API=https://devapi.legendtrading.com ts-node src/institution.test.ts",
"dev": "nodemon --exec 'ts-node' src/index.ts",
"cypress:open": "npx cypress open",
"cypress:run": "npx cypress run"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"puppeteer": "^21.7.0"
},
"devDependencies": {
"@types/node": "^20.11.2",
"cypress": "^13.6.3",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}