-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.77 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "graphql-eventbus",
"private": true,
"scripts": {
"test": "jest --runInBand --verbose --forceExit",
"test:watch": "jest --runInBand --verbose --forceExit --watch",
"build": "npm run build -ws",
"lint": "eslint packages/**/*.ts",
"prettier": "prettier --ignore-path .gitignore --list-different --write \"**/*.{ts,tsx,graphql,yml}\"",
"type:check": "tsc --noEmit",
"prerelease": "npm run build",
"release": "changeset publish"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx,graphql,yml}": [
"prettier --write"
],
"**/*.json": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/quant-daddy/graphql-eventbus.git"
},
"keywords": [],
"author": "Suraj Keshri",
"license": "MIT",
"bugs": {
"url": "https://github.com/quant-daddy/graphql-eventbus/issues"
},
"workspaces": [
"./packages/*"
],
"homepage": "https://github.com/quant-daddy/graphql-eventbus#readme",
"devDependencies": {
"@changesets/cli": "^2.19.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.7.0",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^12.2.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"waait": "^1.0.5",
"wait-for-expect": "^3.0.2"
},
"overrides": {
"graphql": "^16.3.0"
}
}