-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.97 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
{
"name": "gulp",
"version": "1.0.0",
"description": "Modular gulp tasks for compiling, linting & image optimization.",
"main": "index.js",
"scripts": {
"build": "node node_modules/gulp/bin/gulp.js build:css build:js images",
"watch": "node node_modules/gulp/bin/gulp.js watch:css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "QED42",
"url": "https://www.qed42.com/"
},
"license": "ISC",
"devDependencies": {
"ajv": "^5.5.2",
"autoprefixer": "^9.6.1",
"babel-core": "^6.26.3",
"babel-plugin-add-header-comment": "^1.0.3",
"babel-preset-env": "^1.7.0",
"cross-env": "^6.0.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prefer-arrow": "^1.1.5",
"eslint-plugin-react": "^7.5.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-debug": "^4.0.0",
"gulp-eslint-if-fixed": "^1.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-prettier": "^3.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-stylelint": "^13.0.0",
"gulp-using": "^0.1.1",
"npm-run-all": "^4.1.5",
"postcss-calc": "^7.0.1",
"postcss-cli": "^7.1.1",
"postcss-custom-media": "^7.0.8",
"postcss-custom-properties": "^9.1.1",
"postcss-discard-comments": "^4.0.2",
"postcss-extend-rule": "^3.0.0",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.3",
"postcss-partial-import": "^4.1.0",
"postcss-pixels-to-rem": "^0.8.0",
"postcss-reporter": "^6.0.1",
"postcss-rtl": "^1.7.3",
"prettier": "^1.18.2",
"stylelint": "^13.6.1",
"stylelint-checkstyle-formatter": "^0.1.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-no-browser-hacks": "^1.2.1",
"stylelint-order": "^4.0.0"
},
"dependencies": {
"del": "^3.0.0",
"gulp-eslint": "^4.0.2"
}
}