-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.86 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.86 KB
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
{
"name": "@basketry/react-query",
"version": "0.2.2",
"description": "Basketry generator for generating Typescript interfaces",
"main": "./lib/index.js",
"bin": {
"basketry-react-query": "./lib/rpc.js"
},
"scripts": {
"test": "jest",
"clean": "run-s -s clean:*",
"create-snapshot": "ts-node ./src/snapshot/create-snapshot.ts",
"lint": "run-s -s lint:*",
"fix": "run-s -s fix:*",
"clean:output": "rimraf lib",
"start": "node ./lib/index.js",
"prebuild": "run-s -s clean lint",
"build": "tsc",
"postbuild": "chmod +x ./lib/rpc.js",
"lint:eslint": "eslint src/**/*.*",
"fix:eslint": "eslint --fix src/**/*.*",
"lint:prettier": "prettier -c .",
"fix:prettier": "prettier -w .",
"clean:coverage": "rimraf coverage",
"pretest": "run-s -s clean",
"prepack": "run-s -s build"
},
"keywords": [],
"author": "Steve Konves",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/basketry/react-query.git"
},
"bugs": {
"url": "https://github.com/basketry/react-query/issues"
},
"homepage": "https://basketry.io/docs/components/@basketry/react-query",
"funding": "https://github.com/sponsors/basketry",
"devDependencies": {
"@basketry/dotfiles": "^1.1.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@types/pluralize": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@basketry/typescript": "^0.2.3",
"basketry": "^0.2.1",
"case": "^1.6.3",
"pluralize": "^8.0.0",
"prettier": "^2.5.1"
}
}