-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.99 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
{
"name": "sharpen.page",
"version": "1.0.0",
"description": "A Product Sharpening Blog",
"main": "src/index.js",
"private": true,
"repository": "git@github.com:pascallaliberte/sharpen.page.git",
"author": "Pascal Laliberté <pascal@hey.com>",
"license": "MIT",
"scripts": {
"start": "npm run clean:project && webpack --mode development --progress && concurrently \"webpack serve --mode development\" \"bundle exec jekyll serve --drafts --future\"",
"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 clean:project && webpack --mode production --progress && bundle exec jekyll build",
"build:drafts": "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 --drafts --future",
"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 public",
"clean:project": "rimraf ./public ./assets"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"browser-sync": "^2.18.13",
"browser-sync-webpack-plugin": "^2.3.0",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^3.5.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^5.0.5",
"css-loader": "^0.28.4",
"eslint": "^4.4.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^5.6.0",
"http-server": "^0.10.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^2.8.1",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"postcss-scss": "^1.0.2",
"rimraf": "^2.6.2",
"sass": "^1.32.8",
"sass-loader": "^10.0.0",
"sass-rem": "^4.0.0",
"sharp": "^0.33.2",
"style-loader": "^0.18.2",
"sw-precache": "^5.2.0",
"webpack": "^5.37.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.3",
"webpack-merge": "^5.10.0",
"webpack-plugin-critical": "^1.0.0",
"webpack-pwa-manifest": "^3.1.6"
},
"dependencies": {
"awesome-sass-easing": "^1.1.2",
"normalize.css": "^7.0.0",
"stimulus": "^1.1.1",
"turbolinks": "^5.2.0"
}
}