forked from sorry-cypress/sorry-cypress
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "sorry-cypress",
"version": "2.0.0-beta.16",
"author": {
"name": "Andrew Goldis",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/agoldis/sorry-cypress.git"
},
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"killall": "ps -ef | egrep \"webpack|node|nodemon\" | grep sorry | awk '{ print $2 }' | xargs kill",
"release": "./scripts/release-github.sh",
"release-packages": "wsrun release",
"build": "wsrun -t build",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"dev": "wsrun dev"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint && pretty-quick --staged"
}
},
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-react": "^7.21.2",
"husky": "^4.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"prettier-plugin-organize-imports": "^1.1.1",
"pretty-quick": "^3.0.2",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"typescript": "^4.0.3",
"wsrun": "^5.2.4"
}
}