forked from qawolf/qawolf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "qawolf-root",
"private": true,
"scripts": {
"bootstrap": "npm i && lerna bootstrap && npm run build",
"build": "npm run build:packages && npm run bundle:web",
"build:packages": "tsc --build packages/tsconfig.project.json",
"bundle:web": "lerna run --scope @qawolf/web bundle",
"cli": "ts-node packages/cli/src/index.ts",
"install:puppeteer": "node ./packages/browser/node_modules/puppeteer/install.js",
"install:screen": "node ./packages/screen/src/install.js",
"lint": "eslint packages --ext .ts --ignore-path .gitignore --cache",
"pretest": "npm run lint",
"test": "lerna run test --stream",
"test:services": "docker-compose up -d",
"watch": "tsc --build --watch packages/tsconfig.project.json"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "npm run lint"
},
"dependencies": {
"ffmpeg-static": "^3.0.0",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.144",
"@types/node": "^12.11.1",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lerna": "^3.18.1",
"lint-staged": "^9.5.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}