This repository was archived by the owner on Apr 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.69 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.69 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
65
{
"name": "@teamleader/react-hooks-api",
"version": "0.0.4",
"description": "React hooks for the Teamleader API",
"main": "./lib/bundle.cjs.js",
"module": "./lib/bundle.esm.js",
"typings": "./lib/main.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"lint": "tslint --project tsconfig.json",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teamleadercrm/react-hooks-api.git"
},
"keywords": [
"react",
"react-hooks",
"teamleader",
"teamleader-api"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/teamleadercrm/react-hooks-api/issues"
},
"homepage": "https://github.com/teamleadercrm/react-hooks-api#readme",
"devDependencies": {
"@teamleader/api": "^3.4.0",
"@testing-library/react-hooks": "^1.1.0",
"@types/jest": "^26.0.20",
"@types/react": "^16.8.18",
"@types/react-redux": "^7.0.9",
"jest": "^26.6.3",
"prettier": "^1.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.0",
"react-test-renderer": "^16.8.6",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"rollup": "^1.12.3",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"ts-jest": "^26.4.4",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typesafe-actions": "^4.4.0",
"typescript": "^3.9.7",
"utility-types": "^3.7.0"
},
"peerDependencies": {
"@teamleader/api": "^3.4.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.0",
"redux": "^4.0.1"
},
"files": [
"lib"
]
}