-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
75 lines (75 loc) · 2.59 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
{
"name": "gulp-nunjucks-sass-template",
"title": "A Gulp 4 template including SCSS, Nunjucks, TypeScript (via webpack) and more",
"author": "Simon Goričar",
"url": "https://github.com/DefaultSimon",
"version": "2.0.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/DefaultSimon/gulp-nunjucks-sass-template"
},
"scripts": {
"dev": "gulp --require @babel/register --gulpfile tasks/index.ts",
"buildProduction": "NODE_ENV=production gulp build --require @babel/register --gulpfile tasks/index.ts",
"buildDev": "gulp build --require @babel/register --gulpfile tasks/index.ts",
"lintTS": "eslint --cache src/**/*.ts",
"lintTSFix": "eslint --cache --fix src/**/*.ts",
"lintSCSS": "stylelint --cache src/scss/**/*.{css,scss}",
"lintSCSSFix": "stylelint --cache --fix src/scss/**/*.{css,scss}"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.8",
"@mr-hope/gulp-sass": "^2.0.0",
"@types/babel__core": "^7.1.12",
"@types/browser-sync": "^2.26.1",
"@types/fibers": "^3.1.0",
"@types/gulp": "^4.0.8",
"@types/gulp-autoprefixer": "^0.0.32",
"@types/gulp-rename": "^2.0.0",
"@types/gulp-sourcemaps": "^0.0.34",
"@types/nunjucks": "^3.1.4",
"@types/sass": "^1.16.0",
"@types/sass-loader": "^8.0.0",
"@types/webpack": "^4.41.26",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"async-done": "^1.3.2",
"babel-loader": "^8.2.2",
"browser-sync": "^2.26.14",
"chokidar": "^3.5.1",
"core-js": "^3.9.1",
"css-loader": "^5.1.3",
"del": "^6.0.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.0.8",
"fibers": "^5.0.0",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-htmlmin": "^5.0.1",
"gulp-nunjucks-render": "^2.2.3",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"just-debounce": "^1.1.0",
"nunjucks": "^3.2.3",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"sass-variable-loader": "^0.1.2",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^21.0.0",
"supports-color": "^8.1.1",
"typescript": "^4.2.3",
"webpack": "^5.25.0"
},
"packageManager": "yarn@3.2.1"
}