-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.01 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
{
"name": "profile",
"version": "1.0.0",
"eslintConfig": {
"env": {
"browser": true,
"jquery": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"extends": [
"eslint:recommended",
"google"
],
"rules": {
"curly": 2,
"eqeqeq": 2,
"space-before-blocks": 2,
"spaced-comment": 2,
"space-in-parens": 2,
"keyword-spacing": 2,
"no-invalid-this": 0,
"no-undef": 1
}
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"indentation": 4
}
},
"dependencies": {
"jquery": "^3.1.1",
"jquery-smooth-scroll": "^2.1.2",
"lazysizes": "^3.0.0-rc4",
"normalize.css": "^5.0.0",
"waypoints": "^4.0.1"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"browser-sync": "^2.18.7",
"concurrent-transform": "^1.0.0",
"del": "^2.2.2",
"eslint": "^3.16.1",
"eslint-config-google": "^0.7.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^2.0.1",
"gulp": "^3.9.1",
"gulp-changed": "^2.0.0",
"gulp-cssnano": "^2.1.2",
"gulp-image-resize": "^0.12.0",
"gulp-imagemin": "^3.1.1",
"gulp-jsdoc3": "^1.0.1",
"gulp-modernizr": "^1.0.0-alpha",
"gulp-postcss": "^6.3.0",
"gulp-rename": "^1.2.2",
"gulp-rev": "^7.1.2",
"gulp-svg-sprite": "^1.3.1",
"gulp-svg2png": "^2.0.2",
"gulp-uglify": "^2.0.1",
"gulp-usemin": "^0.3.28",
"gulp-watch": "^4.3.11",
"jsdoc": "^3.4.3",
"postcss-hexrgba": "^0.2.1",
"postcss-import": "^9.1.0",
"postcss-mixins": "^5.4.1",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-selector-bem-pattern": "^1.0.0",
"webpack": "^2.2.1"
}
}