-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"name": "chibacity",
"version": "0.0.1",
"description": "chibacity radio",
"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": "echo \"Error: no test specified\" && exit 1",
"playlist": "node scripts/add_playlist.js",
"pin_on_infura": "node scripts/pin_on_infura.js"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env"
]
}
],
[
"envify"
]
]
},
"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.3.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"
},
"keywords": [
"radio",
"ipfs",
"ethereum",
"ujo",
"ipld",
"music",
"descentralization"
],
"author": "andres f",
"license": "ISC",
"dependencies": {
"ethers": "^4.0.23",
"ipfs-api": "^26.1.2",
"jquery": "^3.3.1"
}
}