-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.97 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
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
92
93
94
95
96
97
98
99
{
"name": "@rocketmakers/api-hooks",
"version": "1.4.1",
"description": "Rocketmakers front-end library for parsing a generated Typescript API client into a set of configurable React hooks for fetching and mutating data.",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"start": "start-storybook -p 3000 -c _test/storybook",
"build-cjs": "tsc --pretty --extendedDiagnostics -p tsconfig-cjs.json -d",
"build-esm": "tsc --pretty --extendedDiagnostics -p tsconfig-esm.json -d",
"build": "npm run build-cjs && npm run build-esm",
"lint": "eslint --max-warnings=0 \"**/*.ts{,?}\" --cache --ignore-path .eslintignore --ext ts --ext tsx",
"lint-fix": "npm run lint -- --fix",
"test": "jest test",
"prepare": "npm run lint && npm run build"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Rocketmakers/api-hooks.git"
},
"author": "developers@rocketmakers.com",
"keywords": [
"API",
"Hooks",
"Rocketmakers",
"React",
"Typescript",
"Query",
"Mutation"
],
"license": "MIT",
"peerDependencies": {
"react": "17.x || 18.x"
},
"devDependencies": {
"@rocketmakers/armstrong-edge": "^1.18.1",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-a11y": "^6.5.12",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-vite": "^0.2.2",
"@storybook/react": "^6.5.12",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.0.3",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"commitizen": "^4.2.5",
"cz-customizable": "^7.0.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^4.3.8",
"jest": "^29.0.3",
"jest-config": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"jest-junit": "^14.0.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.9",
"semantic-release": "^19.0.5",
"shx": "^0.3.4",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.3",
"vite": "^3.1.3"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"cz-customizable": {
"config": "./commitizen.config.js"
},
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}