-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
90 lines (90 loc) · 3.05 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
{
"name": "dsa-connect",
"version": "0.7.18",
"description": "DSA connect",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.bundle.js",
"files": [
"dist",
"README.md"
],
"types": "./dist/index.d.ts",
"private": false,
"scripts": {
"prepublishOnly": "npm ci && npm run build",
"dev": "concurrently -c yellow,blue -n RLP,SRV \"npm:build:watch\" \"npm:serve\"",
"build": "rollup -c",
"build:watch": "rollup -cw",
"test": "jest --coverage ./test/",
"test:dist": "npm run build && jest --coverage ./test-dist/",
"test:watch": "jest --coverage --watch",
"serve": "npx light-server --serve . -w \"index.html\" -w \"app.js\" -w \"dist/index.es.js\" -w \"dist/index.bundle.js\"",
"trypublish": "npm publish || true",
"postversion": "git push && git push --tags && npm publish && npm run open-releases",
"open-releases": "open \"$(node -e 'console.log(`${require(\"./package.json\").repository}/releases`)')\"",
"ganache:fork": "dotenv -- cross-var npx ganache-cli --fork %ETH_NODE_URL% --unlock %PUBLIC_ADDRESS% --chainId 1 -e 10000000 -m 'west cricket tenant memory offer burger crumble snow solid mushroom wish solid'",
"hardhat:fork": "dotenv -- cross-var npx hardhat node --fork %ETH_NODE_URL%",
"add:connector": "NODE_PATH=. TS_NODE_PROJECT=scripts/tsconfig.scripts.json dotenv -- cross-var ts-node scripts/addConnector.ts"
},
"bugs": "https://github.com/InstaDApp/dsa-connect/issues",
"repository": {
"type": "git",
"url": "https://github.com/InstaDApp/dsa-connect"
},
"author": {
"name": "INSTADAPP LABS LLC",
"email": "info@instadapp.io"
},
"license": "MIT",
"keywords": [
"ethereum",
"defi",
"dapps"
],
"peerDependencies": {
"web3": "^1.5.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.14",
"@types/node-fetch": "^2.5.10",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.0",
"concurrently": "^5.3.0",
"cross-var": "^1.1.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^3.2.0",
"ethers": "^5.0.31",
"ganache-cli": "^6.12.0",
"hardhat": "^2.0.10",
"html-webpack-plugin": "^4.2.0",
"inquirer": "^8.0.0",
"jest": "^26.5.2",
"light-server": "^2.8.0",
"node-fetch": "^2.6.1",
"prettier-webpack-plugin": "^1.2.0",
"rollup": "^2.28.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^26.4.1",
"ts-node": "^10.8.2",
"tslib": "^2.0.1",
"typescript": "^4.7.4",
"wait-for-expect": "^3.0.2",
"web3": "^1.8.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}