-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.3 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
{
"name": "@decentology/hyperverse-safuux-builderkit",
"version": "1.2.2",
"source": "./source/index.ts",
"types": "./distribution/index.d.ts",
"main": "./distribution/index.js",
"private": true,
"license": "MIT",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"dev": "npx hardhat node & wait-on tcp:8545 && watch \"hardhat compile & npx hardhat run scripts/deploy.js --network localhost\" contracts",
"deploy": "run-p deploy-safuux",
"deploy-safuux": "hardhat run scripts/deploy.js --network safuux",
"build": "rollup --config node:@decentology/config/rollup.config.js",
"clean": "rimraf ./distribution",
"lint": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"publishConfig": {
"access": "public",
"exports": {
".": "./distribution/index.js",
"./react": "./distribution/react.mjs"
}
},
"engines": {
"node": ">=12"
},
"exports": {
".": {
"import": "./source/index.ts"
},
"./react": "./source/react/index.ts"
},
"dependencies": {
"@decentology/config": "^1.2.1",
"@decentology/hyperverse": "^1.2.6",
"@decentology/hyperverse-evm": "^1.2.6",
"@decentology/unstated-next": "^1.2.2",
"ethers": "^5.7.1",
"http-proxy-middleware": "^2.0.6",
"react-query": "^3.39.2",
"react-use": "^17.4.0",
"real-cancellable-promise": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@ethersproject/abstract-provider": "^5.7.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack5": "6.5.12",
"@storybook/csf": "0.0.1",
"@storybook/manager-webpack5": "6.5.12",
"@storybook/react": "6.5.12",
"@types/node": "^18.7.23",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/wait-on": "^5.3.1",
"babel-loader": "^8.2.5",
"chai": "^4.3.6",
"dotenv": "^16.0.2",
"hardhat": "^2.11.2",
"http-proxy-middleware": "^2.0.6",
"node-watch": "^0.7.3",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.3",
"wait-on": "^6.0.1"
}
}