forked from sorry-cypress/sorry-cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
50
51
52
53
54
{
"name": "sorry-cypress",
"version": "2.4.4",
"author": {
"name": "Andrew Goldis",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/agoldis/sorry-cypress.git"
},
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"resolutions": {
"@types/express": "4.17.12",
"@types/serve-static": "1.13.10",
"pac-resolver": "^5.0.0"
},
"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": "APOLLO_PLAYGROUND=true wsrun dev"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint && pretty-quick --staged"
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-jest": "^26.1.5",
"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",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.0.3",
"wsrun": "^5.2.4"
}
}