-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 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
35
{
"name": "minimal",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "tslint src/**/*.ts",
"build": "rimraf build && tsc",
"prettier": "prettier --trailing-comma all --single-quote --use-tabs --no-bracket-spacing --print-width 120 --write src/**/*.ts",
"setup-selenium": "yarn build && node build/scripts/setup-selenium",
"start": "yarn build && yarn setup-selenium && cross-env NODE_CONFIG_DIR=./build/config nightwatch --config=build/nightwatch.conf.js",
"precommit": "yarn prettier && git add -A"
},
"author": "",
"license": "ISC",
"devDependencies": {
"husky": "^0.14.3",
"prettier": "^1.5.3",
"rimraf": "^2.6.1",
"selenium-download": "^2.0.10",
"tslint": "^5.6.0",
"tslint-config-prettier": "^1.3.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.4.2"
},
"dependencies": {
"@types/chalk": "^0.4.31",
"@types/config": "^0.0.32",
"@types/node": "^8.0.23",
"chalk": "^2.1.0",
"config": "^1.26.2",
"cross-env": "^5.0.5",
"nightwatch": "^0.9.16"
}
}