-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.13 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
{
"name": "satellite",
"version": "2.0.0",
"description": "",
"private": true,
"scripts": {
"build": "run-s build:theme build:demo build:doc",
"build:demo": "hugo --source demo --destination ../dist/demo --themesDir ../dist --theme theme",
"build:theme": "webpack --env prod",
"build:theme:debug": "webpack",
"build:doc": "hugo --source doc --destination ../dist/doc",
"dev": "run-s build:theme dev:start",
"dev:start": "run-p dev:theme dev:demo",
"dev:demo": "hugo server --source demo --themesDir ../dist --theme theme --layoutDir ../layouts",
"dev:theme": "webpack --watch --env hot",
"dev:doc": "hugo server --source doc",
"lint": "run-s lint:eslint lint:stylelint lint:prettier",
"lint:eslint": "eslint src/**/*.js *.js",
"lint:stylelint": "stylelint **/*.scss",
"lint:prettier": "prettier --check **/*.scss **/*.js **/*.json **/*.md",
"format": "run-s format:prettier format:eslint format:stylelint",
"format:eslint": "eslint --fix src/**/*.js *.js",
"format:prettier": "prettier --write **/*.scss **/*.js **/*.json **/*.md",
"format:stylelint": "stylelint --fix **/*.scss"
},
"author": "Lior Kummer",
"license": "GPL-3.0",
"devDependencies": {
"@lkummer/break": "^1.0.0",
"@openfonts/fira-code_latin": "^1.44.8",
"@openfonts/lora_latin": "^1.44.2",
"@openfonts/manrope_latin": "^1.0.2",
"@popperjs/core": "^2.9.2",
"commonmark": "^0.30.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^3.2.0",
"fuse.js": "^6.4.6",
"hugo-bin": "^0.97.0",
"mini-css-extract-plugin": "^2.7.2",
"npm-run-all": "^4.1.5",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.2",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^6.0.1",
"stylelint-scss": "^4.3.0",
"stylelint-webpack-plugin": "^3.3.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}