-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "nightwatch-typescript-example",
"version": "1.0.0",
"devDependencies": {
"@types/nightwatch": "^1.1.3",
"@types/node": "^13.11.1",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"chromedriver": "^81.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"geckodriver": "^1.19.1",
"nightwatch": "^1.3.4",
"prettier": "^2.0.4",
"selenium-server": "^3.141.59",
"typescript": "^3.8.3",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^1.0.2",
"rimraf": "^3.0.2"
},
"scripts": {
"nw": "tsc && nightwatch -c ./nightwatch.conf.js",
"headless": "npm run nw",
"chrome": "npm run nw -- -e chrome",
"safari": "npm run nw -- -e safari",
"lint": "tsc --noEmit && eslint '**/*.ts' '**/*.js' --quiet",
"lint:fix": "npm run lint -- --fix",
"tsc:check": "tsc --noEmit",
"build": "tsc",
"build:watch": "tsc -w"
}
}