-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
executable file
·93 lines (93 loc) · 2.66 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
{
"name": "jekyll-react-webpack",
"version": "1.0.1",
"description": "Jekyll boilerplate with React using Webpack",
"repository": {
"type": "git",
"url": "https://github.com/mlomboglia/jekyll-react-webpack"
},
"keywords": [
"Autoprefixer",
"Browsersync",
"gulp",
"imagemin",
"Jekyll",
"PostCSS",
"Sass",
"Webpack",
"React"
],
"author": "Marcos Lomboglia <[email protected]> (https://marcoslombog.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlomboglia/jekyll-react-webpack/issues"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^8.0.5",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0",
"gulp-imagemin": "^4.1.0",
"gulp-newer": "^1.4.0",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-svg-sprite": "^1.5.0",
"gulp-util": "^3.0.8",
"uglifyjs-webpack-plugin": "^2.1.2"
},
"dependencies": {
"browser-sync": "^2.26.3",
"chalk": "^2.3.0",
"compression": "^1.7.1",
"cross-env": "^5.1.1",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"del": "^4.1.0",
"eslint": "^4.18.2",
"eslint-plugin-compat": "^2.1.0",
"eslint-plugin-import": "^2.8.0",
"exports-loader": "^0.6.3",
"file-loader": "^3.0.1",
"laggard": "^2.0.1",
"node-sass": "^4.11.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.7.0",
"postcss-reporter": "^5.0.0",
"postcss-scss": "^1.0.2",
"precss": "^2.0.0",
"react": "^16.3.2",
"react-addons-update": "^15.6.2",
"react-dev-utils": "^5.0.0",
"react-dom": "^16.3.2",
"run-sequence": "^2.2.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-sass-guidelines": "^4.0.1",
"stylelint-config-standard": "^17.0.0",
"stylelint-no-unsupported-browser-features": "^1.0.1",
"stylelint-scss": "^2.2.0",
"through2": "^2.0.3",
"url-loader": "^1.1.2",
"vinyl-named": "^1.1.0",
"webpack": "^4.16.1",
"webpack-stream": "^5.0.0",
"whatwg-fetch": "^1.0.0",
"win-spawn": "^2.0.0"
},
"scripts": {
"start": "node static-scripts start",
"preview": "node static-scripts preview",
"build": "node static-scripts build",
"eject": "node static-scripts eject"
}
}