-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.73 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.73 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
{
"name": "@salable/react-utils",
"version": "4.0.0",
"description": "A small set of hooks and utilities for building React apps w/ Salable.app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"generate-api-types": "npx openapi-typescript https://d2jzis2pwe9wri.cloudfront.net/openapi.v1.yaml -o ./src/types/api.d.ts",
"semantic-release": "semantic-release",
"preversion": "npm run build",
"prepare": "husky install"
},
"author": "Salable",
"license": "MIT",
"repository": {
"url": "https://github.com/Salable/react-utils"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.0.2",
"openapi-typescript": "^6.7.0",
"prettier": "3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.1.5",
"semantic-release": "^22.0.5",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"swr": "^2.2.4"
}
}