nginxconfig.io/package.json

50 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "nginxconfig.io",
"version": "1.0.0",
"homepage": "https://nginxconfig.io",
2018-11-03 13:25:19 +00:00
"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"
},
2018-07-01 13:07:38 +00:00
"keywords": [
"nginx",
"config",
"configuration",
"generator"
],
"author": "Bálint Szekeres <balint@szekeres.me> (https://balint.szekeres.me)",
"license": "MIT",
2018-07-01 13:07:38 +00:00
"dependencies": {
"angular-tooltips": "^1.2.2",
2018-07-01 17:03:12 +00:00
"autoprefixer": "^8.6.4",
2019-01-06 15:52:04 +00:00
"bootstrap": "^4.2.1",
2018-11-19 22:39:28 +00:00
"eslint": "^5.9.0",
2018-07-01 13:07:38 +00:00
"highlight.js": "^9.12.0",
2018-11-19 23:15:52 +00:00
"node-sass": "^4.11.0",
2018-07-01 17:03:12 +00:00
"postcss-cli": "^5.0.1"
2018-07-01 13:07:38 +00:00
},
"devDependencies": {
2018-11-19 23:15:52 +00:00
"cypress": "^3.1.2",
2018-07-01 13:28:35 +00:00
"http-server": "^0.11.1",
"start-server-and-test": "^1.5.0"
},
"scripts": {
2018-07-01 14:25:57 +00:00
"start": "npm run build && http-server",
2018-07-01 17:03:12 +00:00
"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",
2018-08-19 21:17:07 +00:00
"autoprefixer": "postcss public/assets/css/app.min.css --use autoprefixer --no-map --replace --verbose",
2018-11-19 22:39:28 +00:00
"lint": "eslint public/assets/js/app.js",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && start-server-and-test start http://localhost:8080 cypress:run",
"test:debug": "npm run lint && start-server-and-test start http://localhost:8080 cypress:open",
2018-07-01 15:03:34 +00:00
"cypress:run": "cypress run",
2018-08-19 21:17:07 +00:00
"cypress:open": "cypress open"
}
}