-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
{
"name": "@gravity-ui/data-source",
"version": "0.4.0",
"description": "A wrapper around data fetching",
"keywords": [
"data-fetching",
"react",
"react-query",
"gravity-ui"
],
"author": "Mikhail Golbakh <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/gravity-ui/data-source#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gravity-ui/data-source.git"
},
"bugs": {
"url": "https://github.com/gravity-ui/data-source/issues"
},
"engines": {
"node": ">= 18",
"npm": ">= 9",
"yarn": "Please use npm instead of yarn to install dependencies",
"pnpm": "Please use npm instead of pnpm to install dependencies"
},
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/esm/index.d.ts",
"files": [
"build"
],
"sideEffects": false,
"scripts": {
"build": "NODE_ENV=production app-builder build",
"clean": "rm -rf build",
"deps:ci": "npm ci",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"prepublishOnly": "npm run build",
"test": "jest --passWithNoTests",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"utility-types": "^3.11.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@gravity-ui/app-builder": "^0.11.1",
"@gravity-ui/eslint-config": "^3.2.0",
"@gravity-ui/prettier-config": "^1.1.0",
"@gravity-ui/tsconfig": "^1.0.0",
"@swc/jest": "^0.2.36",
"@tanstack/react-query": "^5.51.23",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nano-staged": "^0.8.0",
"react": "^18.3.1"
},
"peerDependencies": {
"@tanstack/react-query": "^5.0.0",
"react": "^18.0.0"
}
}