forked from chrisprice/react-app-webdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 698 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 698 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
{
"name": "react-app-webdriver",
"version": "0.0.0",
"private": true,
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"@types/jest": "^19.2.3",
"jest": "^20.0.4",
"react-scripts": "1.0.7",
"selenium-webdriver": "^3.4.0",
"webdriver-manager": "^12.0.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"e2e": "jest -c e2e/jestConfig.json",
"e2e-update": "webdriver-manager update --out_dir ../../e2e/selenium",
"e2e-start": "webdriver-manager start --out_dir ../../e2e/selenium"
}
}