-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.04 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.04 KB
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
{
"name": "CoworkBuzz",
"version": "1.2.0",
"author": "Marzee Labs <info@marzeelabs.org>",
"license": "GPL-3.0",
"config": {
"port": 1316
},
"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 && webpack --mode production",
"start:verbose": "export NODE_ENV=development && npm-run-all -p erase:* && yarn build:configs && 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": {
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chalk": "^2.3.2",
"child_process": "^1.0.2",
"chokidar": "^2.0.3",
"chokidar-cli": "^1.2.0",
"cli-spinners": "^1.1.0",
"copy-webpack-plugin": "^4.5.1",
"cssnano": "^3.10.0",
"eslint": "^4.19.1",
"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",
"glob": "^7.1.2",
"jquery": "^3.3.1",
"jsdom": "^11.11.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": "^5.0.0",
"punycode": "^2.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-html-parser": "^2.0.2",
"ritmo": "^0.5.0",
"sass-mq": "^5.0.0",
"sharp": "^0.20.1",
"slick-carousel": "^1.8.1",
"static-site-generator-webpack-plugin": "^3.4.1",
"susy": "^2.2.12",
"toml-require": "^1.1.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}