nginxhacktoberfestsecurityssl-certificatecdndigitaloceandigitalocean-community-toolsdrupalgziphstshttp2httpsletsencryptnginx-configsnginx-configurationphp-fpmrate-limitingsecurity-headerssslwordpress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
3.6 KiB
111 lines
3.6 KiB
{ |
|
"name": "nginxconfig.io", |
|
"version": "1.0.0", |
|
"description": "NGINX config generator on steroids", |
|
"private": true, |
|
"license": "MIT", |
|
"engines": { |
|
"node": "^16.17.1", |
|
"npm": "^8.15.0" |
|
}, |
|
"main": "src/nginxconfig/mount.js", |
|
"type": "module", |
|
"scripts": { |
|
"build": "npm run build:clean && npm run build:template && npm run build:prism && npm run build:static && npm run build:tool", |
|
"build:clean": "do-vue clean", |
|
"build:template": "do-vue template && node src/nginxconfig/build/template.js", |
|
"build:prism": "node src/nginxconfig/build/prism.js", |
|
"build:static": "copyfiles --up 2 src/static/{*,**/*} dist", |
|
"build:tool": "vue-cli-service build src/nginxconfig/mount.js --no-clean", |
|
"dev": "npm run build:template && npm run build:prism && npm run dev:tool", |
|
"dev:tool": "vue-cli-service serve src/nginxconfig/mount.js", |
|
"deploy:spaces:comment": "do-vue comment nginxconfig", |
|
"test": "npm run test:eslint && npm run test:stylelint && npm run test:i18n-packs && npm run test:jest", |
|
"test:jest": "jest --env=jsdom /test/.*.js?$", |
|
"test:fix": "npm run test:eslint:fix", |
|
"test:eslint": "eslint 'src/**/*.{js,vue}' --cache", |
|
"test:eslint:fix": "npm run test:eslint -- --fix", |
|
"test:stylelint": "stylelint 'src/**/*.scss' --config node_modules/do-bulma/.stylelintrc.json", |
|
"test:i18n-packs": "node --es-module-specifier-resolution=node src/nginxconfig/i18n/verify.js", |
|
"prepare": "husky install" |
|
}, |
|
"jest": { |
|
"testRegex": "/test/.*.js?$" |
|
}, |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/digitalocean/nginxconfig.io.git" |
|
}, |
|
"keywords": [ |
|
"nginx" |
|
], |
|
"author": "DigitalOcean", |
|
"bugs": { |
|
"url": "https://github.com/digitalocean/nginxconfig.io/issues" |
|
}, |
|
"homepage": "https://github.com/digitalocean/nginxconfig.io#readme", |
|
"dependencies": { |
|
"clipboard": "^2.0.11", |
|
"clone": "^2.1.2", |
|
"do-bulma": "github:do-community/do-bulma", |
|
"do-vue": "github:do-community/do-vue", |
|
"escape-html": "^1.0.3", |
|
"files-diff": "0.0.6", |
|
"json-to-pretty-yaml": "^1.2.2", |
|
"memory-tar-create": "0.0.3", |
|
"pretty-checkbox-vue": "^1.1.9", |
|
"prismjs": "^1.29.0", |
|
"qs": "^6.11.1", |
|
"simple-js-sha2-256": "^1.0.7", |
|
"vue": "^3.2.47", |
|
"vue-i18n": "^9.2.2", |
|
"vue-select": "^4.0.0-beta.6", |
|
"webpack-require-from": "^1.8.6" |
|
}, |
|
"devDependencies": { |
|
"@babel/eslint-parser": "^7.21.3", |
|
"@babel/plugin-proposal-class-properties": "^7.18.6", |
|
"@babel/plugin-transform-runtime": "^7.21.4", |
|
"@babel/preset-env": "^7.21.4", |
|
"@babel/runtime": "^7.21.0", |
|
"@vue/cli-service": "^5.0.8", |
|
"ajv": "^8.12.0", |
|
"chalk": "^5.2.0", |
|
"copyfiles": "^2.4.1", |
|
"core-js": "^3.30.1", |
|
"duplicate-package-checker-webpack-plugin": "^3.0.0", |
|
"eslint": "^8.39.0", |
|
"eslint-plugin-vue": "^9.11.0", |
|
"esm": "^3.2.25", |
|
"husky": "^8.0.3", |
|
"jest": "^29.5.0", |
|
"jest-environment-jsdom": "^29.5.0", |
|
"lint-staged": "^13.2.1", |
|
"node-fetch": "^3.3.1", |
|
"postcss": "^8.4.23", |
|
"sass": "^1.62.0", |
|
"sass-loader": "^13.2.2", |
|
"stylelint": "^15.10.1", |
|
"stylelint-config-standard-scss": "^9.0.0", |
|
"stylelint-order": "^6.0.3", |
|
"vue-template-compiler": "^2.7.14", |
|
"webpack": "^5.80.0", |
|
"webpack-bundle-analyzer": "^4.8.0" |
|
}, |
|
"lint-staged": { |
|
"*.{js,vue}": [ |
|
"eslint --quiet --cache --fix" |
|
], |
|
"*.scss": [ |
|
"stylelint --config node_modules/do-bulma/.stylelintrc.json --fix" |
|
] |
|
}, |
|
"overrides": { |
|
"@vue/cli-service": { |
|
"mini-css-extract-plugin": "^1.6.2" |
|
}, |
|
"pretty-checkbox-vue": { |
|
"vue": "^3.0.0" |
|
} |
|
} |
|
}
|
|
|