-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 2.9 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
{
"name": "modestjs.works",
"version": "1.0.0",
"description": "A book how to write modest JS",
"main": "src/index.js",
"repository": "[email protected]:sandoche/Jekyll-webpack-boilerplate.git",
"author": "Sandoche Adittane <[email protected]>",
"license": "MIT",
"scripts": {
"start": "npm run-script clean:project && webpack --env=dev --progress --profile --colors && concurrently \"webpack-dev-server --env=dev\" \"bundle exec jekyll serve\"",
"build:optim": "npm run-script clean:project && cross-env NODE_ENV=production webpack --env=prod --progress --profile --colors && webpack --env=optim --progress --profile --colors && cross-env JEKYLL_ENV=production bundle exec jekyll build",
"build:pwa:optim": "npm run-script clean:project && cross-env NODE_ENV=production webpack --env=pwa --progress --profile --colors && webpack --env=optim --progress --profile --colors && cross-env JEKYLL_ENV=pwa bundle exec jekyll build && sw-precache --config=config/sw.config.js --verbose",
"build": "npm run-script clean:project && cross-env NODE_ENV=production webpack --env=prod --progress --profile --colors && cross-env JEKYLL_ENV=production bundle exec jekyll build",
"build:pwa": "npm run-script clean:project && cross-env NODE_ENV=production webpack --env=pwa --progress --profile --colors && cross-env JEKYLL_ENV=pwa bundle exec jekyll build && sw-precache --config=config/sw.config.js --verbose",
"serve:dist": "http-server _site -p 4000",
"clean:project": "rimraf ./_site ./assets"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0",
"browser-sync": "^2.18.13",
"browser-sync-webpack-plugin": "^2.0.0",
"clean-webpack-plugin": "^0.1.16",
"concurrently": "^3.5.0",
"copy-webpack-plugin": "^5.0.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.4",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.7.0",
"favicons-webpack-plugin": "^0.0.8",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.10.0",
"imagemin-webpack-plugin": "^1.5.0-beta.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.12.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"postcss-scss": "^1.0.2",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"sass-rem": "^2.0.1",
"script-ext-html-webpack-plugin": "^2.1.3",
"style-loader": "^0.18.2",
"sw-precache": "^5.2.0",
"webpack": "^4.1.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.1.0",
"webpack-plugin-critical": "^1.0.0",
"webpack-pwa-manifest": "^3.1.6"
},
"dependencies": {
"anchor-js": "^4.2.0",
"awesome-sass-easing": "^1.1.2",
"bootstrap": "^4.3.1",
"js-yaml": "^3.13.1",
"normalize.css": "^7.0.0"
}
}