This repository has been archived by the owner on Apr 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
72 lines (72 loc) · 1.95 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
{
"name": "dapp-template",
"version": "1.0.0",
"description": "Basic template for building simple IPFS-based browser ĐApps",
"main": "dist/index.html",
"scripts": {
"start": "ecstatic dist",
"clean": "shx rm -rf dist",
"build": "run-s build:*",
"build:copy": "run-p build:copy:*",
"build:copy:html": "shx mkdir -p dist && shx cp src/index.html dist/index.html",
"build:copy:images": "shx mkdir -p dist/images && shx cp src/images/* dist/images",
"build:copy:css": "shx mkdir -p dist && shx cp src/style.css dist/style.css",
"build:js": "browserify src/main.js -o dist/bundle.js -g uglifyify",
"watch": "npm-run-all build:* --parallel watch:*",
"watch:js": "watchify -t envify src/main.js -o dist/bundle.js -v",
"watch:web": "nodemon --watch src --ext html,css --exec 'npm-run-all build:copy'",
"watch:serve": "ecstatic --cache=0 dist",
"test": "standard"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env"
]
}
],
[
"envify"
]
]
},
"author": "Carson Farmer <carson@textile.io>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.1.0",
"ecstatic": "^3.2.0",
"envify": "^4.1.0",
"nodemon": "^1.18.3",
"npm-run-all": "^4.1.2",
"shx": "^0.2.2",
"standard": "^11.0.0",
"uglifyify": "^4.0.5",
"watchify": "^3.11.0"
},
"dependencies": {
"queue": "^4.4.2",
"window.ipfs-fallback": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textileio/dapp-template.git"
},
"keywords": [
"ipfs",
"peer",
"textile",
"dapp",
"distributed"
],
"bugs": {
"url": "https://github.com/textileio/dapp-template/issues"
},
"homepage": "https://github.com/textileio/dapp-template#readme"
}