forked from redis/RedisInsight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.2 KB
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
{
"name": "redisinsight",
"version": "1.0.0",
"description": "End-to-end tests",
"main": "index.js",
"scripts": {
"test:live": "testcafe --live chrome ",
"start:api": "cross-env SERVER_STATIC_CONTENT=true yarn --cwd ../../redisinsight/api start:prod",
"build:api": "yarn --cwd ../../redisinsight/api build:prod",
"build:statics": "cross-env E2E=true yarn --cwd ../../ build:statics",
"build:statics:win": "cross-env E2E=true yarn --cwd ../../ build:statics:win",
"build:web": "yarn --cwd ../../ build:web",
"redis:last": "docker run --name redis-last-version -p 7777:6379 -d redislabs/redismod",
"start:app": "cross-env SERVER_STATIC_CONTENT=true yarn start:api",
"test:chrome": "testcafe --cache --concurrency 1 chrome tests/ -r html:./report/report.html,spec -e -s takeOnFails=true,path=report/screenshots,pathPattern=${OS}_${BROWSER}/${DATE}_${TIME}/${FIXTURE}_${TEST_ID}_${FILE_INDEX}.png",
"test:chrome:ci": "ts-node ./web.runner.ts",
"test": "yarn test:chrome",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
"test:desktop:ci": "ts-node ./desktop.runner.ts",
"test:desktop:ci:win": "ts-node ./desktop.runner.win.ts",
"test:desktop": "testcafe electron tests/ --browser-init-timeout 180000 -e -r html:./report/desktop-report.html,spec -s takeOnFails=true,path=report/screenshots,pathPattern=${OS}_${BROWSER}/${DATE}_${TIME}/${FIXTURE}_${TEST_ID}_${FILE_INDEX}.png"
},
"keywords": [],
"author": "",
"dependencies": {
"cli-argument-parser": "0.4.5"
},
"devDependencies": {
"@types/chance": "1.1.3",
"@types/edit-json-file": "1.7.0",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"chance": "1.1.8",
"cross-env": "^7.0.3",
"dotenv-cli": "^5.0.0",
"edit-json-file": "1.7.0",
"eslint": "7.32.0",
"eslint-plugin-import": "2.24.2",
"sqlite3": "5.0.10",
"redis": "^3.0.2",
"supertest": "^4.0.2",
"testcafe": "1.14.2",
"testcafe-browser-provider-electron": "0.0.18",
"testcafe-reporter-html": "1.4.6",
"testcafe-reporter-json": "2.2.0",
"testcafe-reporter-spec": "2.1.1",
"ts-node": "^10.5.0",
"typescript": "4.1.5"
}
}