-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.07 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
70
71
72
73
74
75
{
"name": "ipfs-react",
"private": false,
"version": "1.0.3",
"packageManager": "[email protected]",
"main": "./dist/ipfs-react.umd.js",
"module": "./dist/ipfs-react.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/ipfs-react.es.js",
"require": "./dist/ipfs-react.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"engines": {
"node": "18"
},
"scripts": {
"dev": "storybook dev -p 6006",
"build": "storybook build",
"build:lib": "tsc && vite build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier --write \"src/**/*.{ts,tsx,js,mdx}\"",
"test": "vitest",
"test:cov": "vitest run --coverage",
"prepare": "husky install",
"prepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"files": [
"dist"
],
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"prettier -w"
]
},
"dependencies": {
"@helia/unixfs": "^1.4.1",
"helia": "^1.3.12",
"husky": "^8.0.3",
"nft.storage": "^7.1.1"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.3.0",
"@storybook/addon-interactions": "^7.3.0",
"@storybook/addon-links": "^7.3.0",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.3.0",
"@storybook/react": "^7.3.0",
"@storybook/react-vite": "^7.3.0",
"@storybook/testing-library": "^0.2.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-storybook": "^0.6.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.3.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vite-plugin-dts": "^3.5.2",
"vitest": "^0.34.1"
}
}