-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.69 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
{
"name": "awayhugo",
"version": "1.0.0",
"description": "Build process for awayhugo",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"autoprefixer": "^9.1.0",
"cssnano": "^4.0.5",
"eslint": "^7.21.0",
"fancy-log": "^1.3.2",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^6.0.0",
"gulp-uglify": "^3.0.1",
"sass": "^1.83.0",
"npm": "^6.3.0",
"precss": "^3.1.2",
"prettier": "^1.13.7",
"stylelint": "^13.12.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^21.0.0",
"typescript": "^5.0"
},
"scripts": {
"tsc": "node_modules/.bin/tsc",
"hugo-watch": "cd ../.. && hugo server --watch --ignoreCache --buildDrafts --config config.dev.toml",
"gulp-watch": "node_modules/.bin/gulp watch & tsc --watch",
"prod": "node_modules/.bin/gulp watch & cd ../.. && hugo server --watch",
"build": "node_modules/.bin/gulp build & cd ../.. && hugo server --watch",
"vendor": "node_modules/.bin/gulp vendor",
"eslint": "node_modules/.bin/eslint --fix --ext .ts,.js 'src/scripts/'",
"prettier": "node_modules/.bin/prettier --write --list-different 'src/**/*.{scss,css}'",
"stylelint": "node_modules/.bin/stylelint --fix 'src/styles/**/*.{scss,css}'"
},
"author": "",
"license": "ISC",
"dependencies": {},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}