mirror of
https://github.com/digitalocean/nginxconfig.io
synced 2024-11-10 04:24:12 +00:00
e40c2edfa0
* Add DO to footer & update styling * Fix a DO body styling issue whilst we're here * Fix another issue from DO styling
77 lines
2.8 KiB
JSON
77 lines
2.8 KiB
JSON
{
|
|
"name": "nginxconfig.io",
|
|
"version": "1.0.0",
|
|
"homepage": "https://nginxconfig.io",
|
|
"description": "⚙️ NGINX config generator generator on steroids 💉",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/digitalocean/nginxconfig.io.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/digitalocean/nginxconfig.io/issues"
|
|
},
|
|
"keywords": [
|
|
"nginx",
|
|
"config",
|
|
"configuration",
|
|
"generator"
|
|
],
|
|
"author": "Bálint Szekeres <balint@szekeres.me> (https://balint.szekeres.me)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"angular": "^1.7.9",
|
|
"angular-sanitize": "^1.7.8",
|
|
"angular-tooltips": "^1.2.2",
|
|
"bootstrap": "^4.3.1",
|
|
"file-saver": "^2.0.2",
|
|
"highlight.js": "github:highlightjs/highlight.js#cli",
|
|
"js-base64": "^2.5.1",
|
|
"jszip": "^3.2.2",
|
|
"masonry-layout": "^4.2.2",
|
|
"ngclipboard": "^2.0.0",
|
|
"notie": "^4.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^9.7.2",
|
|
"browser-sync": "^2.26.7",
|
|
"concat": "^1.0.3",
|
|
"concurrently": "^5.0.0",
|
|
"cypress": "^3.6.1",
|
|
"eslint": "^6.6.0",
|
|
"http-server": "^0.11.1",
|
|
"node-sass": "^4.13.0",
|
|
"nodemon": "^1.19.4",
|
|
"postcss-cli": "^6.1.3",
|
|
"start-server-and-test": "^1.10.6",
|
|
"uglify-js": "^3.6.9"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run build && concurrently \"npm:*:watch\" \"npm:browsersync\"",
|
|
"build": "concurrently \"npm:build:js:vendor\" \"npm:build:js:app\" \"npm:build:scss\"",
|
|
"build:prod": "concurrently \"npm:build:js:vendor:prod\" \"npm:build:js:app:prod\" \"npm:build:scss:prod\" && npm run autoprefixer",
|
|
"build:js:highlight": "node node_modules/highlight.js/tools/build.js -n bash nginx -t browser --no-compress",
|
|
"build:js:vendor": "npm run build:js:highlight && node build/script.js vendor public/assets/js/vendor.min.js",
|
|
"build:js:vendor:prod": "npm run build:js:vendor -- --production",
|
|
"build:js:app": "node build/script.js app public/assets/js/app.min.js",
|
|
"build:js:app:prod": "npm run build:js:app -- --production",
|
|
"build:js:app:watch": "nodemon -q -C -x 'npm run build:js:app' -w 'resources/js/' -e '*'",
|
|
"build:scss": "node-sass resources/scss/style.scss public/assets/css/app.min.css",
|
|
"build:scss:prod": "npm run build:scss -- --output-style=compressed",
|
|
"build:scss:watch": "npm run build:scss -- --watch",
|
|
"autoprefixer": "postcss public/assets/css/app.min.css --use autoprefixer --no-map --replace --verbose",
|
|
"browsersync": "browser-sync 'public/' --watch --cors",
|
|
"lint": "eslint resources/js/app.js",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"test": "npm run lint && npm run build && start-server-and-test http-server http://localhost:8080 cypress:run",
|
|
"test:debug": "npm run lint && npm run build && start-server-and-test http-server http://localhost:8080 cypress:open",
|
|
"cypress:run": "cypress run",
|
|
"cypress:open": "cypress open"
|
|
},
|
|
"browserslist": [
|
|
"> 0.5%",
|
|
"last 2 major versions",
|
|
"Firefox ESR",
|
|
"not dead",
|
|
"IE 11"
|
|
]
|
|
}
|