-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.26 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
{
"name": "browserifytuttie",
"version": "1.0.0",
"description": "A simple test out with browserify",
"main": "app.js",
"dependencies": {
"ramda": "^0.23.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"beefy": "^2.1.8",
"browser-sync": "^2.18.8",
"browserify": "^14.3.0",
"chalk": "^1.1.3",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-changed": "^3.1.0",
"gulp-concat": "^2.6.1",
"gulp-duration": "0.0.0",
"gulp-imagemin": "^3.2.0",
"gulp-newer": "^1.3.0",
"gulp-notify": "^3.0.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^2.1.2",
"gulp-util": "^3.0.8",
"imagemin-cli": "^3.0.0",
"mapstraction": "^1.0.1",
"minifyify": "^7.3.5",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"rimraf": "^2.6.1",
"run-sequence": "^1.2.2",
"utils-merge": "^1.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.9.0"
},
"scripts": {
"build": "watchify app/js/app.js -o build/js/bundle.js -p mapstraction --debug -v",
"build:min": "watchify app/js/app.js -o build/js/bundle.js -p [minifyify --map bundle.js.map --output build/js/bundle.js.map] -d -v",
"bundle": "browserify app/js/app.js -o \"build/js/bundle.js\" -p mapstraction --debug -v",
"clean": "npm run rm:build && mkdir \"build/js\"",
"clean:js": "npm run rm:js && mkdir \"build/js\"",
"clean:watch": "npm run clean && npm run imagemin && npm run build",
"imagemin": "imagemin app/images/* --out-dir=build/img",
"rm:build": "rimraf build",
"rm:js": "rimraf build/js",
"serve": "beefy app/js/app.js 8000 --live --open",
"setup": "npm install && npm run clean && npm run imagemin",
"start": "npm run bundle && npm run serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/sowed/browserifytuttie"
},
"keywords": [
"browserify",
"npm scripts",
"gulp",
"imagemin", "watchify", "uglify", "sourcemaps", "babel", "beefy", "browser-sync",
"Webpack Alternative",
"Tutorial"
],
"author": "Sowed Castelli",
"license": "MIT"
}