forked from layerx-labs/dappkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·98 lines (98 loc) · 2.85 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
{
"name": "@taikai/dappkit",
"version": "2.1.10",
"description": "Web3 Decentralized Application Kit",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"engines": {
"node": "^14 || ^16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taikai/dappkit.git"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"compile": "node tools/compile.mjs",
"postcompile": "node tools/contract-json-cleaner.mjs build/contracts/",
"prebuild": "npm run compile",
"prepublishOnly": "npm run build",
"mocha-mug": "mocha --bail --timeout 60000 --exit --require ts-node/register --require tsconfig-paths/register",
"test": "npm run mocha-mug -- 'test/**/*.spec.{ts,tsx}' --pretty",
"build": "tsc -p ./tsconfig.json",
"postbuild": "tscpaths -p ./tsconfig.json -s ./ -o ./dist",
"docs": "typedoc",
"ganache:start": "ganache -p 8545 -q --account_keys_path keys.json ",
"test-ci": "npm run ganache:start >/dev/null & npm run test",
"eslint": "eslint --ignore-path .eslintignore --ext .ts ./src",
"lint": "npm run eslint -- --quiet",
"lint-fix": "npm run eslint -- --quiet --fix",
"tsc": "tsc",
"tscpaths": "tscpaths",
"dk-transpile": "dlt -j dk-config.json"
},
"dependencies": {
"bignumber.js": "^9.0.2",
"date-fns": "^2.27.0",
"ipfs-http-client": "^50.1.2",
"web3": "^1.6.1",
"web3-eth": "^1.6.1",
"web3-utils": "^1.6.1"
},
"devDependencies": {
"@openzeppelin/contracts": "^3.4.2",
"@taikai/dappkit-launchpad": "^0.0.19",
"@truffle/workflow-compile": "4.0.21",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/yargs": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.1.1",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"eslint": "^8.8.0",
"ganache": "^7.0.0-beta.2",
"ganache-time-traveler": "^1.0.5",
"mocha": "^9.1.3",
"mocha-multi-reporters": "^1.5.1",
"ts-node": "^10.4.0",
"tsc-alias": "^1.5.0",
"tsconfig-paths": "^3.12.0",
"tscpaths": "^0.0.9",
"typedoc": "^0.22.10",
"typescript": "4.5.3"
},
"author": "Mosh Mage <[email protected]> (https://moshmage.gitlab.io)",
"contributors": [
{
"name": "Helder Vasconcelos",
"email": "[email protected]"
},
{
"name": "Vitor Hugo",
"email": "[email protected]"
}
],
"license": "ISC",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"types": "./dist/src/index.d.ts",
"bugs": {
"url": "https://github.com/taikai/dappkit/issues"
},
"homepage": "https://github.com/taikai/dappkit#readme",
"directories": {
"doc": "docs",
"test": "test"
},
"overrides": {
"@truffle/events": "0.1.6",
"@truffle/config": "1.3.29"
}
}