-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 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
{
"name": "@spinamp/spinamp-hooks",
"version": "0.0.10",
"description": "Set of react hooks for fetching data from spinamp pipeline built on top of react-query and spinamp-sdk.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"src",
"lib"
],
"scripts": {
"test": "jest",
"build": "tsc && tsc-alias",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"format": "npx prettier --write src",
"prepare": "husky install",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spinamp/spinamp-hooks.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/spinamp/spinamp-hooks/issues"
},
"homepage": "https://github.com/spinamp/spinamp-hooks",
"dependencies": {
"@spinamp/spinamp-sdk": "^0.0.12",
"@tanstack/react-query": "^4.0.10"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"ethers": "^5.6.9",
"husky": "^8.0.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"ts-jest": "^28.0.7",
"tsc-alias": "^1.7.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-native": "*"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
}
}