-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.07 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
{
"name": "xAmplR",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run build:assets && npm run build:js && npm run build:sass",
"build:js": "browserify -t [ babelify --global ] src/js/index.js -o dist/js/app.js --debug",
"build:sass": "node-sass --source-map dist/css/style.css.map --include-path=$(node bin/sass-paths.js) src/sass/style.sass dist/css/style.css",
"build:assets": "node bin/move-assets.js",
"watch": "npm run watch:js & npm run watch:sass & npm run watch:assets & npm run livereload",
"watch:js": "watchify -p browserify-hmr -t [ babelify --global ] src/js/index.js -o dist/js/app.js --debug",
"watch:sass": "nodemon -w src/sass -e sass -x 'npm run build:sass'",
"watch:assets": "nodemon -e jpg,jpeg,gif,png,json,md,svg,flac,ogg --watch src/assets --exec 'npm run build:assets'",
"livereload": "livereload dist/**/*.css -d",
"start": "npm run build && serve --port 3000 --path dist & npm run watch"
},
"author": "Alex Milanov <alex@i4web.biz>",
"license": "MIT",
"dependencies": {
"audio-buffer-utils": "^5.1.2",
"bourbon": "^4.2.7",
"bourbon-neat": "^1.8.0",
"cc-icons": "github:cc-icons/cc-icons",
"draw-wave": "^2.0.0",
"file-saver": "^2.0.0-rc.4",
"font-awesome": "^4.7.0",
"iblokz-data": "^1.2.0",
"iblokz-snabbdom-helpers": "^1.2.0",
"jszip": "^3.1.5",
"raf": "^3.4.1",
"rx": "^4.1.0",
"snabbdom": "^0.5.4",
"superagent": "^3.3.1",
"uuid": "^3.3.2",
"wavesurfer": "^1.3.4",
"wavesurfer.js": "^2.1.0"
},
"devDependencies": {
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-3": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"browserify-hmr": "^0.3.5",
"eslint": "^3.12.2",
"eslint-config-google": "^0.6.0",
"fs-extra": "^1.0.0",
"livereload": "^0.6.0",
"node-sass": "^4.1.1",
"node-serve": "0.0.3",
"nodemon": "^1.19.1",
"watchify": "^3.8.0"
}
}