-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2.35 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
{
"name": "andes-test-integracion",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx cypress open -c baseUrl=http://localhost:4200 --env ENVIRONMENT=develop,API_SERVER=http://localhost:3002",
"prod": "npx cypress open -c baseUrl=http://localhost --env ENVIRONMENT=develop,API_SERVER=http://localhost",
"prod:run": "npx cypress run -c numTestsKeptInMemory=1,baseUrl=http://localhost --env API_SERVER=http://localhost",
"prod:up": "node scripts/prepare.js production up",
"prod:reset": "node scripts/prepare.js production reset",
"prod:down": "node scripts/prepare.js production down",
"prod:backup": "node scripts/prepare.js production backup",
"prod:cleanup": "node scripts/prepare.js production cleanup",
"prod:update": "cross-env APP=master API=master docker-compose -f docker/docker-compose.yml pull",
"dev": "npx cypress open -c baseUrl=http://localhost:4200 --env ENVIRONMENT=develop,API_SERVER=http://localhost:3002",
"dev:run": "npx cypress run -c baseUrl=http://localhost:4200 --env ENVIRONMENT=develop,API_SERVER=http://localhost:3002",
"dev:up": "node scripts/prepare.js develop up",
"dev:reset": "node scripts/prepare.js develop reset",
"dev:down": "node scripts/prepare.js develop down",
"report": "node scripts/reporter.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andes/andes-test-integracion.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andes/andes-test-integracion/issues"
},
"homepage": "https://github.com/andes/andes-test-integracion#readme",
"devDependencies": {
"@angular/cli": "^8.3.8",
"cypress": "^10.0.0",
"cypress-file-upload": "^5.0.7",
"cypress-select-tests": "^1.5.7",
"mocha": "^4.1.0",
"mocha-junit-reporter": "^1.23.2",
"mocha-multi-reporters": "^1.1.7",
"mochawesome": "^4.1.0",
"mochawesome-merge": "^4.0.0",
"require-dir": "^1.2.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@elastic/elasticsearch": "^7.8.0",
"@octokit/auth-app": "^2.4.3",
"@octokit/rest": "^17.1.0",
"cross-env": "^6.0.3",
"faker": "^4.1.0",
"moment": "^2.29.1",
"mongo-seeding": "^3.4.1",
"mongodb": "^3.3.4",
"request": "^2.88.0",
"sha1": "^1.1.1"
}
}