-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.45 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
{
"name": "root",
"version": "0.0.1",
"description": "ENS Registrar, management website and metadata website for takoyaki.eth subnames.",
"scripts": {
"deploy-heroku": "git subtree push --prefix heroku-app heroku master",
"deploy-heroku-force": "git push heroku `git subtree split --prefix heroku-app master`:master --force",
"setup-heroku": "heroku git:remote -a takoyaki-nft",
"local": "./build.sh && cd heroku-app && heroku local web",
"local-live": "python -m SimpleHTTPServer 5000",
"flatten": "meeseeks flatten index.html > dist/index.html",
"dist": "./build.sh",
"test": "mocha --timeout 600000 tests/test"
},
"keywords": [
"Ethereum",
"ENS",
"takoyaki"
],
"author": "Richard Moore <[email protected]> (https://www.ricmoo.com)",
"contributors": [
"Yuet-Loo Wong <[email protected]> (http://www.yuetloo.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ricmoo/Takoyaki/issues"
},
"homepage": "https://takoyaki.cafe/",
"dependencies": {
"ethers": ">=5.0.0-beta.156"
},
"devDependencies": {
"@ethersproject/cli": ">=5.0.0-beta.143",
"mocha": "^6.2.0",
"rollup": "^1.20.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1",
"terser": "^4.3.1"
},
"repository": {
"type": "git",
"url": "git://github.com/ricmoo/Takoyaki.git"
}
}