-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.5 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "build-tools",
"description": "Build tools using Gulp and Webpack 2",
"version": "1.2.0",
"main": "index.js",
"license": "MIT",
"private": true,
"repository": "https://github.com/DennisMartinez/build-tools.git",
"bugs": "https://github.com/DennisMartinez/build-tools/issues",
"author": {
"name": "Dennis Martinez",
"email": "[email protected]"
},
"contributors": [
{
"name": "Joe Fusco",
"email": "[email protected]"
}
],
"scripts": {
"test": "karma start --single-run --no-auto-watch",
"start": "cross-env NODE_ENV=development gulp",
"build": "npm run test && cross-env NODE_ENV=production gulp dist",
"version": "git add .",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"beepbeep": "^1.2.1",
"browser-sync": "^2.18.8",
"cross-env": "^4.0.0",
"del": "^2.2.2",
"eslint": "^3.19.0",
"eslint-config-standard": "^7.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"file-loader": "^0.11.1",
"gulp": "^3.9.1",
"gulp-combine-mq": "^0.4.0",
"gulp-cssnano": "^2.1.2",
"gulp-file-include": "^1.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.1.1",
"gulp-load-plugins": "^1.5.0",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^3.1.0",
"gulp-sass-glob": "^1.0.8",
"gulp-sourcemaps": "^2.5.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"gulp.spritesmith": "^6.3.0",
"isparta-loader": "^2.0.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-ajax": "^3.3.1",
"jasmine-core": "^2.3.4",
"jasmine-jquery": "^2.1.1",
"karma": "^1.5.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.30",
"karma-webpack": "^2.0.3",
"progress-bar-webpack-plugin": "^1.9.3",
"run-sequence": "^1.2.2",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.18.0",
"webpack-stream": "^3.2.0"
},
"dependencies": {
"font-awesome": "^4.7.0",
"jquery": "^3.1.1",
"normalize.css": "^6.0.0",
"slick-carousel": "^1.6.0"
}
}