-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "cmi-www",
"version": "0.1.0",
"description": "Landing page, card catalog, and documentation for the Library of Christ Mind Teachings",
"license": "MIT",
"author": "Rick Mercer",
"homepage": "https://www.christmind.info/",
"repository": "github:rmercer33/cmi-www",
"main": "index.js",
"scripts": {
"base:dev:webpack": "webpack --mode development",
"base:dev:jekyll": "JEKYLL_ENV=development bundle exec jekyll build",
"base:prod:webpack": "webpack --mode production",
"base:prod:jekyll": "JEKYLL_ENV=production bundle exec jekyll build --config ./_config.prod.yml",
"watch": "webpack --mode development --watch",
"jekyll": "JEKYLL_ENV=development bundle exec jekyll s",
"start": "npm run jekyll & npm run watch",
"d:jekyll": "JEKYLL_ENV=development bundle exec jekyll build",
"deploy:dev": "npm run d:webpack && npm run d:jekyll",
"p:webpack": "webpack --mode production",
"d:webpack": "webpack --mode development --watch",
"dev:jekyll": "JEKYLL_ENV=development bundle exec jekyll s",
"p:jekyll": "JEKYLL_ENV=production bundle exec jekyll build --config ./_config.prod.yml",
"deploy:prod": "npm run p:webpack && npm run p:jekyll",
"preview:jekyll": "JEKYLL_ENV=production bundle exec jekyll s --config ./_config.prod.yml",
"preview": "npm run preview:jekyll",
"dev": "npm run dev:jekyll"
},
"keywords": [
"cmi",
"jekyll"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^4.1.2",
"css-loader": "^2.1.1",
"eslint": "^6.8.0",
"file-loader": "^3.0.1",
"mini-css-extract-plugin": "^0.5.0",
"selenium-webdriver": "^4.0.0-alpha.7",
"style-loader": "^0.23.1",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11"
}
}