-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 3.75 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
{
"name": "amith-raravi",
"version": "2.0.0",
"private": true,
"description": "A self starter site",
"scripts": {
"test": "echo 'Error: no test specified' && exit 1",
"postinstall": "husky install",
"htmlproofer": "bundle exec htmlproofer ./_site --allow-hash-href --check-favicon --check-html --disable-external",
"prettier:check": "./node_modules/.bin/prettier --check '_data/*.yml' '_includes/*.html' '_layouts/*.html' '_pages/*.md' '_sass/*.scss' '.circleci/config.yml' 'js/_main.js' '_config.yml' '.babelrc' '.eslintrc.json' '.jshintrc' 'cypress.json' 'Gruntfile.js' 'manifest.json' 'package.json' 'staticman.yml' 'sw.js' 'webpack.config.js'",
"prettier:debugcheck": "./node_modules/.bin/prettier --debug-check '_data/*.yml' '_includes/*.html' '_layouts/*.html' '_pages/*.md' '_sass/*.scss' '.circleci/config.yml' 'js/_main.js' '_config.yml' '.babelrc' '.eslintrc.json' '.jshintrc' 'cypress.json' 'Gruntfile.js' 'manifest.json' 'package.json' 'staticman.yml' 'sw.js' 'webpack.config.js'",
"prettier:write": "./node_modules/.bin/prettier --write '_data/*.yml' '_includes/*.html' '_layouts/*.html' '_pages/*.md' '_sass/*.scss' '.circleci/config.yml' 'js/_main.js' '_config.yml' '.babelrc' '.eslintrc.json' '.jshintrc' 'cypress.json' 'Gruntfile.js' 'manifest.json' 'package.json' 'staticman.yml' 'sw.js' 'webpack.config.js'",
"eslint": "./node_modules/.bin/eslint js/_main.js",
"build:prod": "bundle exec jekyll build",
"build:dev": "bundle exec jekyll build --config _config.yml,_config_development.yml",
"build:pork": "bundle exec jekyll build --config _config.yml,_config_porkbun.yml",
"serve": "bundle exec jekyll serve",
"webpack:dev": "webpack --mode development",
"webpack": "webpack --mode production",
"purgecss": "purgecss --css _site/css/main.css --content _site/index.html _site/**/index.html _site/**/**/index.html _site/**/**/**/index.html dist/main.js --output dist/",
"build:dev:full": "npm run prettier:check && npm run eslint && npm run build:dev && npm run webpack && npm run purgecss && npm run build:dev && npm run htmlproofer",
"build:pork:full": "npm run prettier:check && npm run eslint && npm run build:pork && npm run webpack && npm run purgecss && npm run build:pork && npm run htmlproofer",
"build:prod:full": "npm run prettier:check && npm run eslint && npm run build:prod && npm run webpack && npm run purgecss && npm run build:prod && npm run htmlproofer",
"serve:dev:full": "npm run prettier:check && npm run eslint && npm run build:dev && npm run webpack && npm run purgecss && npm run htmlproofer && npm run serve",
"docker:build": "docker build --file .docker/Dockerfile -t amithraravi-docker .",
"docker:run": "docker run --rm -d -p 4000:80 --name amithraravi -v \"$PWD/_site\":/var/www/html amithraravi-docker",
"docker:stop": "docker stop amithraravi",
"docker:rmi": "docker rmi amithraravi-docker",
"docker:login": "docker exec -it amithraravi bash",
"cypress:open": "cypress open"
},
"author": "Amith Raravi <[email protected]>",
"homepage": "https://www.amithraravi.com/",
"license": "The MIT License (MIT)",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"babel-loader": "^8.2.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"clean-webpack-plugin": "^4.0.0",
"cypress": "^8.7.0",
"eslint": "^8.1.0",
"grunt": "^1.4.1",
"grunt-contrib-imagemin": "^4.0.0",
"grunt-contrib-jshint": "^3.1.1",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-file-append": "0.0.7",
"grunt-newer": "^1.3.0",
"grunt-svgmin": "^6.0.1",
"husky": "^7.0.4",
"prettier": "^2.4.1",
"purgecss": "^4.0.3",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1"
}
}