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.
52 lines
1.5 KiB
52 lines
1.5 KiB
{
|
|
"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/valentinxxx/nginxconfig.io.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/valentinxxx/nginxconfig.io/issues"
|
|
},
|
|
"keywords": [
|
|
"nginx",
|
|
"config",
|
|
"configuration",
|
|
"generator"
|
|
],
|
|
"author": "Bálint Szekeres <balint@szekeres.me> (https://balint.szekeres.me)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"angular-tooltips": "^1.2.2",
|
|
"autoprefixer": "^8.6.4",
|
|
"bootstrap": "^4.1.1",
|
|
"highlight.js": "^9.12.0",
|
|
"node-sass": "^4.9.0",
|
|
"postcss-cli": "^5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"cypress": "^3.0.2",
|
|
"http-server": "^0.11.1",
|
|
"start-server-and-test": "^1.5.0"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run build && http-server",
|
|
|
|
"build": "npm run build:scss",
|
|
"build:prod": "npm run build:scss:prod && npm run autoprefixer",
|
|
|
|
"build:scss": "node-sass --source-map=public/assets/css/app.min.css.map resources/scss/app.scss public/assets/css/app.min.css",
|
|
"build:scss:prod": "node-sass --output-style=compressed resources/scss/app.scss public/assets/css/app.min.css",
|
|
|
|
"autoprefixer": "postcss public/assets/css/app.min.css --use autoprefixer --no-map --replace --verbose",
|
|
|
|
"test": "start-server-and-test start http://localhost:8080 cypress:run",
|
|
"test:debug": "start-server-and-test start http://localhost:8080 cypress:open",
|
|
|
|
"cypress:run": "cypress run",
|
|
"cypress:open": "cypress open"
|
|
}
|
|
}
|