-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.76 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "MZ_Boilerplate",
"version": "1.2.1",
"author": "Marzee Labs <[email protected]>",
"license": "GPL-3.0",
"config": {
"port": 1313
},
"browserslist": [
"last 2 versions",
"last 4 ios_saf versions"
],
"sharp-config": {
"src": "static/media",
"dest": "public/media",
"quality": 80,
"types": [
"jpg",
"jpeg",
"png",
"webp",
"tiff"
],
"sizes": [
{
"suffix": "-large",
"width": 1400
},
{
"suffix": "-regular",
"width": 820
},
{
"suffix": "-medium",
"width": 680
},
{
"suffix": "-small",
"width": 460
}
]
},
"scripts": {
"erase:public": "rm -Rf ./public && mkdir ./public",
"erase:temp": "rm -Rf ./temp && mkdir ./temp && mkdir ./temp/hugo",
"erase:hugoconfig": "rm -Rf ./config.yml",
"erase:data": "node scripts/eraseBuildData.js",
"sass:scss-compile": "node-sass scss/ -o temp/css --include-path ./node_modules",
"sass:postcss": "postcss temp/css/*.css -d public/css --use autoprefixer --verbose",
"sass:postcssnano": "postcss temp/css/*.css -d public/css --use autoprefixer --use cssnano --verbose",
"build:sass": "npm-run-all -s sass:scss-compile sass:postcssnano",
"build:configs": "node scripts/configs.js",
"build:sharp": "node scripts/sharp.js",
"build:data": "node scripts/buildData.js",
"compile:webpack": "webpack --watch --display none --mode development & webpack-dev-server --color",
"watch:configs": "chokidar 'scripts/configs.js' 'configs/*.yml' -c 'yarn build:configs && yarn dummy:refresh' --silent",
"watch:sass": "chokidar 'package.json' 'scss/**/*.scss' -c 'npm-run-all -s sass:scss-compile sass:postcss dummy:refresh' --initial --silent",
"watch:sharp": "nodemon -q -w scripts/sharp.js -x 'yarn build:sharp && yarn dummy:refresh'",
"watch:data": "chokidar 'scripts/buildData.js' 'scripts/buildData/**/*.js' -c 'yarn build:data' --initial --silent",
"watch:hugo": "hugo -w",
"watch:webpack": "nodemon -q -w webpack.config.js -x 'yarn compile:webpack'",
"dummy:refresh": "node scripts/dummy-refresh.js",
"webpack": "webpack",
"build": "export NODE_ENV=production && npm-run-all -p erase:* && npm-run-all -p build:* && hugo --minify && webpack --mode production",
"start:verbose": "export NODE_ENV=development && npm-run-all -p erase:* && yarn build:configs && yarn build:data && npm-run-all -p watch:*",
"start": "nodemon -q -w package.json -w scripts/serve.js -w scripts/libs -w scripts/tasks -x 'node scripts/serve.js'",
"linter:eslint": "eslint --ext .jsx,.js . --fix",
"lint": "npm-run-all -s linter:*",
"rebuild": "rm -Rf node_modules && yarn install"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0",
"chalk": "^2.3.2",
"child_process": "^1.0.2",
"chokidar": "^2.0.3",
"chokidar-cli": "^1.2.0",
"classnames": "^2.2.6",
"cli-spinners": "^1.1.0",
"copy-webpack-plugin": "^5.0.0",
"cssnano": "^4.0.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"find-and-replace": "^1.0.2",
"get-user-locale": "^1.1.1",
"glob": "^7.1.2",
"ignore-loader": "^0.1.2",
"jquery": "^3.3.1",
"jsdom": "^13.0.0",
"multispinner": "^0.2.1",
"node-sass": "^4.8.3",
"node-yaml": "^3.1.1",
"nodemon": "^1.17.2",
"npm-run-all": "^4.1.2",
"parse5": "^5.0.0",
"parse5-utils": "^2.0.0",
"postcss-cli": "^6.0.0",
"promise": "^8.0.2",
"punycode": "^2.1.0",
"react": "^16.2.0",
"react-autosuggest": "^9.3.4",
"react-calendar": "^2.17.3",
"react-dom": "^16.2.0",
"react-html-parser": "^2.0.2",
"ritmo": "^0.5.0",
"rss-parser": "^3.4.2",
"sass-mq": "^5.0.0",
"sharp": "^0.21.1",
"static-site-generator-webpack-plugin": "^3.4.1",
"susy": "^2.2.12",
"tiny-slider": "^2.8.6",
"toml-require": "^1.1.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"whatwg-fetch": "^3.0.0"
}
}