-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "bonding-curve",
"version": "0.0.1",
"description": "Smart Contracts for bonding curves.",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"compile:dapp": "yarn generate && cp build dapp/src -r",
"dep": "node scripts/enforceStaticDeps.js",
"ganache": "ganache-cli -p 8577",
"generate": "truffle compile && typechain --target truffle './build/**/*.json' && node scripts/patchTypechain.js",
"test": "truffle test && yarn tsc",
"tsc": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lsaether/bonding-curves.git"
},
"keywords": [
"ethereum",
"tcr",
"tokens"
],
"author": "lsaether",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/lsaether/bonding-curves/issues"
},
"homepage": "https://github.com/lsaether/bonding-curves#readme",
"dependencies": {
"openzeppelin-solidity": "2.0.0-rc.3",
"truffle": "5.0.0-next.12"
},
"devDependencies": {
"@types/bn.js": "4.11.2",
"@types/chai": "4.1.6",
"@types/web3": "1.0.11",
"bn.js": "4.11.8",
"chai": "4.2.0",
"ganache-cli": "^6.1.8",
"truffle-typings": "1.0.3",
"ts-node": "7.0.1",
"typechain": "0.3.6",
"typescript": "3.1.3"
}
}