forked from trufflesuite/truffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.18 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
{
"name": "@truffle/db-kit",
"version": "0.2.24",
"description": "Utility belt for Truffle and @truffle/db",
"license": "MIT",
"author": "g. nicholas d'andrea <gnidan@trufflesuite.com>",
"homepage": "https://github.com/trufflesuite/truffle/tree/master/packages/db-kit#readme",
"repository": {
"type": "git",
"url": "https://github.com/trufflesuite/truffle.git",
"directory": "packages/db-kit"
},
"bugs": {
"url": "https://github.com/trufflesuite/truffle/issues"
},
"main": "dist/src/index.js",
"bin": {
"db-kit": "./dist/bin/cli.js"
},
"files": [
"dist"
],
"directories": {
"dist": "dist"
},
"scripts": {
"build": "yarn build:dist && yarn build:docs",
"build:dist": "ttsc",
"build:docs": "typedoc",
"clean": "rm -rf ./dist",
"madge": "madge ./src/index.ts",
"prepare": "yarn build",
"test": "jest --verbose --detectOpenHandles --forceExit --passWithNoTests"
},
"dependencies": {
"@truffle/codec": "^0.15.0",
"@truffle/compile-common": "^0.9.4",
"@truffle/compile-solidity": "^6.0.68",
"@truffle/config": "^1.3.56",
"@truffle/db": "^2.0.24",
"@truffle/decoder": "^5.4.0",
"@truffle/environment": "^0.2.148",
"@truffle/fetch-and-compile": "^0.5.44",
"graphql": "^15.3.0",
"graphql-tag": "^2.12.6",
"ink": "^3.0.8",
"ink-big-text": "^1.2.0",
"ink-divider": "^3.0.0",
"ink-select-input": "^4.2.0",
"ink-spinner": "^4.0.1",
"ink-syntax-highlight": "^1.0.1",
"ink-text-input": "^4.0.1",
"meow": "^9.0.0",
"react": "^16.8.0",
"source-map-support": "^0.5.19",
"web3": "1.10.0"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/node": "~12.12.0",
"@types/react": "^16.8.0",
"@types/web3": "1.0.20",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "29.1.2",
"madge": "^5.0.1",
"ts-jest": "29.0.3",
"ts-node": "10.7.0",
"tsconfig-paths": "^3.9.0",
"ttypescript": "1.5.13",
"typedoc": "0.22.18",
"typescript": "^4.7.4",
"typescript-transform-paths": "3.3.1",
"web3-core": "1.10.0"
},
"keywords": [
"smart-contract",
"truffle"
],
"publishConfig": {
"access": "public"
}
}