-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.9 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "sedona",
"version": "0.1.0",
"private": true,
"description": "Sedona",
"devDependencies": {
"@htmlacademy/editorconfig-cli": "1.x",
"autoprefixer": "8.3.x",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"browser-sync": "2.23.x",
"core-js": "^2.5.7",
"cross-env": "^5.1.5",
"css-mqpacker": "^6.0.2",
"del": "^3.0.0",
"eslint": "^4.19.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-requirejs": "^3.2.0",
"gulp": "^3.9.1",
"gulp-better-rollup": "^3.1.0",
"gulp-changed": "^3.2.0",
"gulp-postcss": "^7.0.1",
"gulp-cssnano": "^2.1.3",
"gulp-gh-pages-will": "^0.5.5",
"gulp-html-minifier2": "^1.1.8",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^4.1.0",
"gulp-load-plugins": "^1.5.0",
"gulp-open": "^3.0.1",
"gulp-plumber": "1.2.x",
"gulp-rename": "^1.2.3",
"gulp-rev": "^8.1.1",
"gulp-rev-replace": "^0.4.4",
"gulp-sourcemaps": "^2.6.4",
"gulp-svgmin": "^1.2.4",
"gulp-svgstore": "^6.1.1",
"gulp-uglify": "^3.0.0",
"gulp-webp": "^3.0.0",
"htmlhint": "^0.9.13",
"htmlhint-stylish": "^1.0.3",
"husky": "^0.14.3",
"image-min": "^0.3.2",
"lint-staged": "^7.1.1",
"normalize.css": "^8.0.1",
"postcss-flexbugs-fixes": "^3.3.1",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^4.1.0",
"postcss-preset-env": "^6.4.0",
"postcss-sorting": "^3.1.0",
"postcss-url": "^7.3.2",
"prettier": "^1.13.5",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"run-sequence": "^2.2.1",
"stream-combiner2": "^1.1.1",
"stylelint": "9.2.x"
},
"scripts": {
"precommit": "lint-staged",
"test": "editorconfig-cli",
"build": "cross-env NODE_ENV=production gulp build",
"symbols": "gulp symbols",
"svg": "gulp svg",
"images": "gulp images",
"webp": "gulp webp",
"start": "cross-env NODE_ENV=development gulp dev",
"demo": "cross-env NODE_ENV=production gulp build && gulp demo",
"deploy": "gulp deploy"
},
"editorconfig-cli": [
"*.html",
"*.json",
"*.js",
"js/**/*.js",
"img/**/*.svg",
"postcss/**/*.{css,pcss}"
],
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.html": [
"htmlhint",
"git add"
],
"*.css": [
"stylelint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
}
}