-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.43 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
{
"name": "build-with-javascript",
"version": "0.0.1",
"description": "Learn to build projects in Javascript with Gulp + Browserify",
"main": "index.js",
"scripts": {
"build:dev": "./node_modules/.bin/gulp build || npm run clean",
"build:prod": "./node_modules/.bin/gulp build -p || npm run clean",
"clean": "./node_modules/.bin/gulp clean",
"lint": "./node_modules/.bin/gulp lint",
"start": "./node_modules/.bin/gulp watch",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register ./client/app/**/*.spec.js"
},
"author": "Santiago Alvarez Rodriguez",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"del": "^2.2.0",
"eslint": "^2.2.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-cssnano": "^2.1.1",
"gulp-eslint": "^2.0.0",
"gulp-if": "^2.0.0",
"gulp-inject": "^3.0.0",
"gulp-load-plugins": "^1.2.0",
"gulp-mocha": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-rev": "^7.0.0",
"gulp-sass": "^2.2.0",
"gulp-uglify": "^1.5.2",
"gulp-util": "^3.0.7",
"mocha": "^2.4.5",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"yargs": "^4.1.0"
},
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}