-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "selenium-tests",
"version": "0.0.0",
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"@staticdeploy/mock-server": "../../",
"@wdio/cli": "^7.19.6",
"@wdio/local-runner": "^7.19.5",
"@wdio/mocha-framework": "^7.19.5",
"@wdio/selenium-standalone-service": "^7.19.5",
"@wdio/spec-reporter": "^7.19.5",
"http-server": "^14.1.0",
"npm-run-all": "^4.1.5",
"webdriverio": "^7.19.5"
},
"scripts": {
"start:mock-server": "mock-server --watch --delay 1000 --require @babel/register",
"start:dev-server": "react-scripts start",
"start": "npm-run-all -p start:*",
"build": "react-scripts build",
"serve": "http-server build",
"selenium-tests": "wdio wdio.conf.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}