nginxconfig.io/package.json

60 lines
2.1 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": {
2019-05-19 19:23:42 +00:00
"angular": "^1.7.8",
2018-07-01 13:07:38 +00:00
"angular-tooltips": "^1.2.2",
2019-05-19 19:19:57 +00:00
"autoprefixer": "^9.5.1",
2019-05-19 17:48:36 +00:00
"bootstrap": "^4.3.1",
2019-05-19 19:15:19 +00:00
"concat": "^1.0.3",
2019-05-15 22:09:24 +00:00
"eslint": "^5.16.0",
2019-05-19 19:15:19 +00:00
"file-saver": "github:eligrey/FileSaver.js#master",
"highlight.js": "github:highlightjs/highlight.js#cli",
"js-base64": "^2.5.1",
2019-05-19 19:15:19 +00:00
"jszip": "^3.2.1",
"masonry-layout": "^4.2.2",
"ngclipboard": "^2.0.0",
2019-05-15 22:09:24 +00:00
"node-sass": "^4.12.0",
2019-05-19 20:14:53 +00:00
"notie": "^4.3.1",
2019-05-19 19:19:57 +00:00
"postcss-cli": "^6.1.2"
2018-07-01 13:07:38 +00:00
},
"devDependencies": {
2019-05-19 17:48:36 +00:00
"cypress": "^3.3.0",
2018-07-01 13:28:35 +00:00
"http-server": "^0.11.1",
2019-05-19 17:48:36 +00:00
"start-server-and-test": "^1.9.0"
},
"scripts": {
2018-07-01 14:25:57 +00:00
"start": "npm run build && http-server",
2019-05-19 19:15:19 +00:00
"build": "npm run build:vendor && npm run build:scss",
"build:prod": "npm run build:vendor && npm run build:scss:prod && npm run autoprefixer",
"build:vendor": "node build-vendor.js",
2018-07-01 17:03:12 +00:00
"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",
2019-05-19 07:01:13 +00:00
"build:scss:watch": "npm run build:scss -- --watch",
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",
2019-05-19 19:22:12 +00:00
"test": "npm run lint && npm run build:prod && start-server-and-test start http://localhost:8080 cypress:run",
"test:debug": "npm run lint && npm run build && 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"
}
}