-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.88 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
{
"name": "base",
"version": "1.0.0",
"description": "Base: Sass, JavaScript architecture and Gulp Tasks",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm gulp build",
"serve": "npm gulp",
"start": "npm install && npm run serve",
"check-lint": "prettier --list-different '**/*.js' && eslint '**/*.js'",
"lint": "prettier --write '**/*.js' && eslint --fix '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgnaciodeNuevo/base.git"
},
"author": "Ignacio Villanueva",
"license": "MIT",
"bugs": {
"url": "https://github.com/IgnaciodeNuevo/base/issues"
},
"homepage": "https://github.com/IgnaciodeNuevo/base#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"browser-sync": "^2.26.3",
"critical": "1.3.4",
"del": "3.0.0",
"eslint": "5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"gulp": "4.0.0",
"gulp-autoprefixer": "6.0.0",
"gulp-babel": "^8.0.0",
"gulp-changed": "3.2.0",
"gulp-concat": "2.6.1",
"gulp-eslint": "^5.0.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "1.2.0",
"gulp-rename": "^1.4.0",
"gulp-responsive": "2.11.0",
"gulp-rev": "8.1.1",
"gulp-sass": "4.0.2",
"gulp-sourcemaps": "2.6.4",
"gulp-svgo": "1.5.4",
"gulp-uglify": "3.0.1",
"gulp-watch": "5.0.0",
"modularscale-sass": "^3.0.8",
"prettier": "1.14.3",
"stylelint": "9.6.0",
"stylelint-config-standard": "18.2.0",
"stylelint-order": "1.0.0",
"stylelint-scss": "3.3.1"
},
"dependencies": {
"fontfaceobserver": "^2.0.13"
}
}