-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.47 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@oceanprotocol/uploader-ui-lib",
"version": "0.2.10",
"description": "Ocean Uploader component library",
"repository": {
"type": "git",
"url": "git+https://github.com/oceanprotocol/dbs-ui-lib.git"
},
"author": "Ocean Protocol Foundation <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/oceanprotocol/dbs-ui-lib/issues"
},
"homepage": "https://github.com/oceanprotocol/dbs-ui-lib#readme",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.4",
"@storybook/addon-essentials": "^7.4.5",
"@storybook/react": "^7.4.5",
"@storybook/react-webpack5": "^7.4.5",
"@svgr/rollup": "^8.1.0",
"@svgr/webpack": "^8.0.1",
"@testing-library/jest-dom": "^6.1.3",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"postcss-import": "^15.1.0",
"release-it": "^16.2.1",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"storybook": "^7.4.5",
"storybook-css-modules-preset": "^1.1.1",
"ts-jest": "^29.1.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"webpack": "^5.88.2"
},
"dependencies": {
"@ethersproject/units": "^5.7.0",
"@oceanprotocol/typographies": "^0.1.0",
"@oceanprotocol/uploader": "^0.0.3",
"@tippyjs/react": "^4.2.6",
"@types/react": "^17.0.59",
"ajv": "^8.12.0",
"classnames": "^2.3.2",
"connectkit": "^1.5.3",
"cpx": "^1.5.0",
"css-loader": "^6.7.3",
"dotenv": "^16.3.1",
"ethers": "^6.7.1",
"https-browserify": "^1.0.0",
"identity-obj-proxy": "^3.0.0",
"react-spring": "^9.7.3",
"react-tabs": "^6.0.1",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.2",
"rimraf": "^2.7.1",
"rollup-plugin-import-css": "^3.3.4",
"slugify": "^1.6.6",
"stream-http": "^3.2.0",
"style-loader": "^3.3.2",
"viem": "^1.13.1",
"wagmi": "^1.4.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"scripts": {
"rollup:watch": "rollup -c -w",
"build:watch": "npm run clean && npm-run-all -p rollup:watch",
"clean": "rimraf dist",
"test": "jest",
"testWatch": "jest --watch",
"src:build": "cpx \"src/**\" dist/src -v",
"rollup:build": "rollup -c",
"build": "npm run clean && npm-run-all -s clean rollup:build",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"release": "release-it"
},
"jest": {
"bail": true,
"preset": "ts-jest",
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
},
"setupFilesAfterEnv": [
"./setupTests.ts"
],
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"verbose": true
},
"engines": {
"node": ">=18"
},
"release-it": {
"hooks": {
"after:bump": "npm run build"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
}
}