-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.08 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "reactotron-react-query",
"version": "1.0.3",
"description": "",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"repository": "https://github.com/hsndmr/reactotron-react-query",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "rimraf -rf build && tsc -p tsconfig.prod.json",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "eslint 'src/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test": "jest",
"prerelease": "npm run build",
"release": "release-it"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react-query": "^3.39.2",
"reactotron-core-client": "^2.9.3"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"husky": "8.0.2",
"jest": "29.7.0",
"lint-staged": "13.1.0",
"prettier": "3.2.5",
"react-dom": "^18.2.0",
"react-query": "^3.39.2",
"reflect-metadata": "0.1.13",
"release-it": "17.1.1",
"rimraf": "3.0.2",
"ts-jest": "29.0.3",
"typescript": "4.7.4"
},
"files": [
"build/main",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}