-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.74 KB
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
{
"name": "hero-js",
"version": "1.0.0",
"description": "",
"main": "src/dist/hero.js",
"module": "src/index.js",
"scripts": {
"start": "npm run lib && cd ./src/projects/ && node heronode.js",
"lib": "npm run dist-iife && npm run dist-cjs && webpack src/hero-provider.js --output ./src/dist/hero-provider.js --mode development --silent && npm run cp",
"dist-iife": "rollup src/index.js --file src/dist/hero.js --format iife",
"dist-cjs": "rollup src/index.js --file src/dist/hero-cjs.js --format cjs",
"precommit": "lint-staged",
"compile": "cd ./src/ && node compiler.js",
"publish": "cd ./tools/ && node publish.js",
"cp": "cd ./tools/ && node cp.js"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
],
"yarn.lock": [
"git rm --cached"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"chokidar": "^2.0.4",
"eslint": "4.19.1",
"eth-ecies": "^1.0.3",
"ethereumjs-util": "^6.0.0",
"ethereumjs-wallet": "^0.6.3",
"express": "^4.15.4",
"express-http-proxy": "^1.0.7",
"hoxy": "^3.3.1",
"http-proxy-middleware": "^0.19.1",
"http-server": "^0.11.1",
"husky": "^0.14.3",
"ipfs-api": "^26.1.2",
"js-sha256": "^0.9.0",
"lint-staged": "^7.0.5",
"node-stun": "^0.1.2",
"orbit-db": "^0.19.9",
"prettier": "1.12.1",
"rollup": "",
"serve-index": "^1.9.1",
"shelljs": "^0.8.3",
"socket.io": "",
"socketio-file-upload": "^0.6.4",
"spark-md5": "^3.0.0",
"web3": "^1.0.0-beta.36",
"web3-provider-engine": "^14.1.0",
"webpack": "^4.30.0",
"webpack-cli": "",
"websocket": "^1.0.28"
},
"devDependencies": {
"webpack-cli": "^3.1.2"
}
}