-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
55 lines (55 loc) · 2.65 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
{
"name": "naivecoin-proof-of-stake",
"version": "1.0.0",
"description": "A tutorial for building a Proof of Stake cryptocurrency",
"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; concurrently \"webpack --env=dev --progress --profile --colors; 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; 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; 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; 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; JEKYLL_ENV=pwa bundle exec jekyll build; sw-precache --config=config/sw.config.js --verbose",
"serve:dist": "http-server _site",
"clean:project": "if [ -e _site ]; then rm -R _site; fi; if [ -e assets ]; then rm -R assets; fi"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"browser-sync": "^2.18.13",
"browser-sync-webpack-plugin": "^1.2.0",
"clean-webpack-plugin": "^0.1.16",
"concurrently": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.4",
"eslint": "^4.4.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"extract-text-webpack-plugin": "^3.0.0",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"http-server": "^0.10.0",
"imagemin-webpack-plugin": "^1.5.0-beta.0",
"node-sass": "^4.5.3",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"postcss-scss": "^1.0.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"sw-precache": "^5.2.0",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1",
"webpack-merge": "^4.1.0",
"webpack-plugin-critical": "^1.0.0",
"webpack-pwa-manifest": "^3.1.6"
},
"dependencies": {
"normalize.css": "^7.0.0"
}
}