-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
66 lines (66 loc) · 1.74 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
{
"name": "@zoralabs/nft-components",
"version": "1.2.0",
"description": "NFT Media Rendering Components",
"typings": "dist/index.d.ts",
"source": "src/index.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": "https://github.com/ourzora/nft-components",
"author": "Zora",
"license": "GPL-3.0",
"private": false,
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@zoralabs/nft-hooks": "1.2.0",
"deepmerge": "^4.2.2",
"merge-anything": "^4.0.1",
"tslib": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@storybook/addon-a11y": "^6.4.18",
"@storybook/addon-actions": "^6.4.18",
"@storybook/addon-essentials": "^6.4.18",
"@storybook/addon-links": "^6.4.18",
"@storybook/react": "^6.4.18",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"babel-loader": "^8.2.2",
"fetch-mock-jest": "^1.5.1",
"gh-pages": "^3.1.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"mockdate": "^3.0.5",
"prettier": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.{ts,md}": "prettier src --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"prepack": "yarn clean && tsc",
"publish-prelease": "npm publish --access public --tag=pre-release",
"build": "yarn run prepack",
"test": "TZ='EST' jest",
"clean": "rm -rf ./dist",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"predeploy": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static"
}
}