-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.57 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
{
"name": "d-corp",
"version": "0.1.0",
"description": "D Corp, a DAO promoting success in business in markets globally and locally.",
"main": "index.js",
"scripts": {
"migrate": "truffle migrate --reset",
"create-local-graph": "graph create --node http://localhost:8020 cag/d-corp",
"bootstrap-local-graph": "wait-on tcp:8545 && npm run migrate && wait-on http-get://localhost:8000 && npm run create-local-graph",
"codegen-graph": "truffle exec render-templates.js && graph codegen",
"build-graph": "npm run codegen-graph && graph build",
"deploy-local": "npm run codegen-graph && graph deploy --node http://localhost:8020 --ipfs http://localhost:5001 cag/d-corp",
"fresh-graph": "npm run migrate && npm run deploy-local",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cag/d-corp.git"
},
"keywords": [
"d",
"corp",
"dao",
"business",
"markets",
"smart",
"contracts",
"ethereum",
"ethdenver",
"lol"
],
"author": "Alan Lu",
"license": "MIT",
"bugs": {
"url": "https://github.com/cag/d-corp/issues"
},
"homepage": "https://github.com/cag/d-corp#readme",
"dependencies": {
"@gnosis.pm/conditional-tokens-contracts": "^1.0.1",
"@gnosis.pm/conditional-tokens-market-makers": "github:gnosis/conditional-tokens-market-makers#modify-fees",
"@openzeppelin/contracts": "^2.5.0",
"@truffle/contract": "^4.1.9",
"apollo-boost": "^0.4.7",
"canonical-weth": "^1.4.0",
"core-js": "^3.6.4",
"graphql": "^14.6.0",
"project-name": "github:PhABC/uniswap-solidity",
"vue": "^2.6.11",
"vue-apollo": "^3.0.3",
"web3": "^1.2.6"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.17.1",
"@graphprotocol/graph-ts": "^0.17.0",
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.1.2",
"fs-extra": "^8.1.0",
"mustache": "^4.0.0",
"truffle": "^5.1.12",
"vue-template-compiler": "^2.6.11",
"wait-on": "^4.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"globals": {
"Web3": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}