-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
106 lines (106 loc) · 2.72 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-nft-gallery",
"version": "0.7.0",
"description": "React component to display your/anybody's NFTs as a gallery",
"license": "MIT",
"author": "Ben Kremer <[email protected]>",
"main": "dist/index.js",
"module": "dist/react-nft-gallery.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"homepage": "https://github.com/bkrem/react-nft-gallery",
"bugs": {
"url": "https://github.com/bkrem/react-nft-gallery/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bkrem/react-nft-gallery.git"
},
"scripts": {
"start": "tsdx watch",
"build": "cross-env NODE_ENV=production tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "husky install && cross-env NODE_ENV=production tsdx build",
"release": "np",
"postpublish": "yarn deploy-storybook",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"engines": {
"node": ">=12"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "auto"
},
"size-limit": [
{
"path": "dist/react-nft-gallery.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-nft-gallery.esm.js",
"limit": "10 KB"
}
],
"jest": {
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
},
"keywords": [
"react",
"react-component",
"ethereum",
"web3",
"nft",
"gallery",
"typescript"
],
"peerDependencies": {
"react": ">=16"
},
"dependencies": {
"react-intersection-observer": "^8.32.1"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@size-limit/preset-small-lib": "^5.0.2",
"@storybook/addon-essentials": "^6.4.21",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.21",
"@storybook/addons": "^6.4.21",
"@storybook/react": "^6.4.21",
"@storybook/storybook-deployer": "^2.8.11",
"@tailwindcss/postcss7-compat": "^2.2.7",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^9",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"np": "^7.5.0",
"postcss": "^7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rollup-plugin-postcss": "^4.0.0",
"size-limit": "^5.0.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}