-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.93 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
{
"name": "theme-hugo-theme",
"version": "0.2.0",
"description": "",
"private": true,
"scripts": {
"theme:build": "webpack",
"theme:build:prod": "webpack --env.prod",
"theme:watch": "webpack -w",
"demo:build": "hugo -s demo -d ../dist/doc/demo --themesDir ../dist --theme theme",
"demo:dev": "run-s theme:build demo:dev:run",
"demo:dev:watch": "hugo serve -s demo --themesDir ../dist --theme theme",
"demo:dev:run": "run-p demo:dev:watch theme:watch",
"doc:build": "hugo -s doc -d ../dist/doc --themesDir ../dist --theme theme",
"doc:dev": "run-s theme:build doc:dev:run",
"doc:dev:watch": "hugo serve -s doc --themesDir ../dist --theme theme",
"doc:dev:run": "run-p doc:dev:watch theme:watch",
"story": "start-storybook -p 6006",
"story:build": "build-storybook",
"lint:js": "eslint src/",
"lint:style": "stylelint **/*.scss"
},
"author": "Lior Kummer",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "^7.8.4",
"@storybook/addon-docs": "^5.3.13",
"@storybook/addon-viewport": "^5.3.13",
"@storybook/html": "^5.3.13",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"file-loader": "^5.1.0",
"hugo-bin": "^0.54.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"stylelint": "^13.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.14.2",
"stylelint-webpack-plugin": "^1.2.3",
"terser": "^4.6.3",
"terser-webpack-plugin": "^2.3.5",
"typeface-fira-code": "^1.1.4",
"typeface-open-sans": "0.0.75",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-rtl-plugin": "^2.0.0"
}
}