forked from argos-ci/jest-puppeteer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"ci": "yarn build && yarn lint && yarn test --ci && yarn test:incognito --ci",
"dev": "lerna run build --parallel -- --watch",
"format": "prettier --write \"packages/**/*.{js,json,md}\" \"*.{js,json,md}\"",
"lint": "eslint .",
"release": "lerna publish --conventional-commits && conventional-github-releaser --preset angular",
"test": "jest --runInBand",
"test:incognito": "cross-env INCOGNITO=true jest --runInBand"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,css,md}": [
"npm run format",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"conventional-github-releaser": "^3.1.3",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"express": "^4.17.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lerna": "^3.19.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"puppeteer": "^2.0.0",
"puppeteer-firefox": "^0.5.0"
},
"dependencies": {}
}