-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.81 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
{
"version": "v4.4.2",
"devDependencies": {
"@atolye15/eslint-config-base": "^1.1.0",
"@atolye15/kss-node-twig-builder": "^1.2.0",
"@atolye15/stylelint-config": "^1.3.0",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"@fullhuman/postcss-purgecss": "^2.3.0",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.12",
"chalk": "^4.1.0",
"classnames": "^2.2.6",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"eslint": "^7.6.0",
"gulp": "^4.0.2",
"gulp-directory-sync": "^1.2.4",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-svgstore": "^7.0.1",
"gulp-twig": "atolye15/gulp-twig#v1.3.1",
"kss": "3.0.1",
"lazypipe": "^1.0.2",
"node-notifier": "^8.0.1",
"postcss-flexbugs-fixes": "^4.2.1",
"prettier": "^2.0.5",
"rollup": "^2.23.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.0",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.1.2",
"through2": "^4.0.2"
},
"engines": {
"node": ">=10.0.0"
},
"private": true,
"scripts": {
"lint": "yarn lint:js && yarn lint:css",
"lint:js": "eslint \"src/**/*.js\"",
"lint:css": "stylelint --syntax scss \"src/**/*.scss\"",
"format": "yarn format:js && yarn format:css",
"format:js": "prettier --write \"src/**/*.js\"",
"format:css": "stylelint --fix --syntax scss \"src/**/*.scss\"",
"build": "NODE_ENV=production gulp build",
"start": "gulp start",
"styleguide": "gulp styleguide"
},
"dependencies": {}
}