aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.json
diff options
context:
space:
mode:
authorMarvin Borner2019-02-13 17:28:40 +0100
committerMarvin Borner2019-02-13 17:28:40 +0100
commitc4f0ad95fa4fb4a3e7998e08318690c59e0934d5 (patch)
tree7ae237a9c5269885fd7c3ec2d8947cfcfac1da99 /package.json
parent6a967887df29c0051a22df96463aed63b7ece729 (diff)
Added css minifying
Diffstat (limited to 'package.json')
-rw-r--r--package.json252
1 files changed, 126 insertions, 126 deletions
diff --git a/package.json b/package.json
index f67f6da..351509f 100644
--- a/package.json
+++ b/package.json
@@ -1,132 +1,132 @@
{
- "name": "texx",
- "version": "1.0.0",
- "description": "Decentralized chatting made easy!",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/texxme/texx.git"
- },
- "author": "Marvin Borner <contact@marvinborner.de>",
- "license": "MIT",
- "main": "dist/index.js",
- "engines": {
- "node": "~6.9.1",
- "npm": ">=3.10.0"
- },
- "scripts": {
- "dev": "npm run watch & nodemon src/index.js --exec \"node -r dotenv/config -r babel-register\"",
- "watch": "npm run debug && onchange public/styles/* -- npm run css & onchange public/scripts/* -- npm run debug",
- "css": "node-sass public/styles/main.sass dist/app.css",
- "debug": "rm -r dist/* && npm run css && browserify public/scripts/main.js -o dist/app.js",
- "build": "rm -r dist/* && npm run css && browserify public/scripts/main.js -o dist/temp.js && minify dist/temp.js > dist/app.js && rm dist/temp.js && pug views/index.pug --out dist",
- "single": "rm -rf dist/* && node-sass public/styles/main.sass dist/temp.css && minify dist/temp.css > dist/app.css && browserify public/scripts/main.js -o dist/temp.js && minify dist/temp.js > dist/app.js && rm dist/temp.* && pug views/index.pug --out dist && echo '<script>'$(cat dist/app.js)'</script>' >> dist/index.html && echo '<style>'$(cat dist/app.css)'</style>' >> dist/index.html && html-minifier --collapse-whitespace --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --remove-tag-whitespace --use-short-doctype --minify-css true --minify-js true dist/index.html > dist/complete.html"
- },
- "keywords": [
- "express",
- "babel",
- "boilerplate",
- "scaffold",
- "es6",
- "es2015",
- "es2016",
- "es2017",
- "jest",
- "eslint"
- ],
- "dependencies": {
- "@fortawesome/fontawesome-free": "^5.6.3",
- "babel-cli": "^6.26.0",
- "babel-plugin-transform-class-properties": "^6.24.1",
- "babel-plugin-transform-object-rest-spread": "^6.26.0",
- "babel-preset-env": "^1.6.1",
- "body-parser": "^1.18.2",
- "bulma": "^0.7.2",
- "dexie": "^2.0.4",
- "drag-drop": "^4.2.0",
- "ejs": "^2.6.1",
- "express": "^4.16.4",
- "fingerprintjs2": "^2.0.6",
- "html-minifier": "^3.5.21",
- "jquery": "^3.3.1",
- "jssha": "^2.3.1",
- "minify": "^4.1.0",
- "moment": "^2.24.0",
- "morgan": "^1.9.0",
- "onchange": "^5.2.0",
- "openpgp": "^4.4.5",
- "peer": "^0.2.10",
- "pug": "^2.0.0-beta11",
- "pug-cli": "^1.0.0-alpha6",
- "rimraf": "^2.6.2",
- "sweetalert": "^2.1.2",
- "webrtc-adapter": "^7.2.0",
- "xkcd-password": "^2.0.0"
- },
- "devDependencies": {
- "babel-eslint": "^8.2.3",
- "babel-jest": "^21.2.0",
- "babel-register": "^6.26.0",
- "browserify": "^16.2.3",
- "dotenv": "^4.0.0",
- "eslint": "^5.3.0",
- "eslint-config-airbnb-base": "^13.1.0",
- "eslint-plugin-import": "^2.16.0",
- "eslint-plugin-jest": "^21.3.2",
- "eslint-watch": "^3.1.3",
- "jest": "^23.6.0",
- "node-sass": "^4.11.0",
- "nodemon": "^1.18.9",
- "supertest": "^3.0.0"
- },
- "browser": {
- "openpgp": "openpgp/dist/openpgp.min.js"
- },
- "babel": {
- "presets": [
- [
- "env",
- {
- "targets": {
- "node": "current"
- }
- }
- ]
- ],
- "plugins": [
- "transform-object-rest-spread",
- "transform-class-properties"
- ]
- },
- "eslintConfig": {
- "parser": "babel-eslint",
- "plugins": [
- "import",
- "jest"
- ],
- "parserOptions": {
- "ecmaVersion": 2017,
- "sourceType": "module"
- },
- "env": {
- "node": true,
- "jest": true
- },
- "extends": [
- "eslint:recommended"
- ],
- "rules": {
- "jest/no-focused-tests": 2,
- "jest/no-identical-title": 2
+ "name": "texx",
+ "version": "1.0.0",
+ "description": "Decentralized chatting made easy!",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/texxme/texx.git"
+ },
+ "author": "Marvin Borner <contact@marvinborner.de>",
+ "license": "MIT",
+ "main": "dist/index.js",
+ "engines": {
+ "node": "~6.9.1",
+ "npm": ">=3.10.0"
+ },
+ "scripts": {
+ "dev": "npm run watch & nodemon src/index.js --exec \"node -r dotenv/config -r babel-register\"",
+ "watch": "npm run debug && onchange public/styles/* -- npm run css & onchange public/scripts/* -- npm run debug",
+ "css": "node-sass public/styles/main.sass dist/app.css",
+ "debug": "rm -r dist/* && npm run css && browserify public/scripts/main.js -o dist/app.js",
+ "build": "rm -r dist/* && node-sass public/styles/main.sass dist/temp.css && browserify public/scripts/main.js -o dist/temp.js && minify dist/temp.css > dist/app.css && minify dist/temp.js > dist/app.js && rm dist/temp.* && pug views/index.pug --out dist",
+ "single": "rm -rf dist/* && node-sass public/styles/main.sass dist/temp.css && minify dist/temp.css > dist/app.css && browserify public/scripts/main.js -o dist/temp.js && minify dist/temp.js > dist/app.js && rm dist/temp.* && pug views/index.pug --out dist && echo '<script>'$(cat dist/app.js)'</script>' >> dist/index.html && echo '<style>'$(cat dist/app.css)'</style>' >> dist/index.html && html-minifier --collapse-whitespace --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --remove-tag-whitespace --use-short-doctype --minify-css true --minify-js true dist/index.html > dist/complete.html"
+ },
+ "keywords": [
+ "express",
+ "babel",
+ "boilerplate",
+ "scaffold",
+ "es6",
+ "es2015",
+ "es2016",
+ "es2017",
+ "jest",
+ "eslint"
+ ],
+ "dependencies": {
+ "@fortawesome/fontawesome-free": "^5.6.3",
+ "babel-cli": "^6.26.0",
+ "babel-plugin-transform-class-properties": "^6.24.1",
+ "babel-plugin-transform-object-rest-spread": "^6.26.0",
+ "babel-preset-env": "^1.6.1",
+ "body-parser": "^1.18.2",
+ "bulma": "^0.7.2",
+ "dexie": "^2.0.4",
+ "drag-drop": "^4.2.0",
+ "ejs": "^2.6.1",
+ "express": "^4.16.4",
+ "fingerprintjs2": "^2.0.6",
+ "html-minifier": "^3.5.21",
+ "jquery": "^3.3.1",
+ "jssha": "^2.3.1",
+ "minify": "^4.1.0",
+ "moment": "^2.24.0",
+ "morgan": "^1.9.0",
+ "onchange": "^5.2.0",
+ "openpgp": "^4.4.5",
+ "peer": "^0.2.10",
+ "pug": "^2.0.0-beta11",
+ "pug-cli": "^1.0.0-alpha6",
+ "rimraf": "^2.6.2",
+ "sweetalert": "^2.1.2",
+ "webrtc-adapter": "^7.2.0",
+ "xkcd-password": "^2.0.0"
+ },
+ "devDependencies": {
+ "babel-eslint": "^8.2.3",
+ "babel-jest": "^21.2.0",
+ "babel-register": "^6.26.0",
+ "browserify": "^16.2.3",
+ "dotenv": "^4.0.0",
+ "eslint": "^5.3.0",
+ "eslint-config-airbnb-base": "^13.1.0",
+ "eslint-plugin-import": "^2.16.0",
+ "eslint-plugin-jest": "^21.3.2",
+ "eslint-watch": "^3.1.3",
+ "jest": "^23.6.0",
+ "node-sass": "^4.11.0",
+ "nodemon": "^1.18.9",
+ "supertest": "^3.0.0"
+ },
+ "browser": {
+ "openpgp": "openpgp/dist/openpgp.min.js"
+ },
+ "babel": {
+ "presets": [
+ [
+ "env",
+ {
+ "targets": {
+ "node": "current"
+ }
}
+ ]
+ ],
+ "plugins": [
+ "transform-object-rest-spread",
+ "transform-class-properties"
+ ]
+ },
+ "eslintConfig": {
+ "parser": "babel-eslint",
+ "plugins": [
+ "import",
+ "jest"
+ ],
+ "parserOptions": {
+ "ecmaVersion": 2017,
+ "sourceType": "module"
},
- "jest": {
- "testEnvironment": "node"
- },
- "bugs": {
- "url": "https://github.com/vmasto/express-babel/issues"
+ "env": {
+ "node": true,
+ "jest": true
},
- "homepage": "https://github.com/vmasto/express-babel#readme",
- "directories": {
- "test": "test"
+ "extends": [
+ "eslint:recommended"
+ ],
+ "rules": {
+ "jest/no-focused-tests": 2,
+ "jest/no-identical-title": 2
}
+ },
+ "jest": {
+ "testEnvironment": "node"
+ },
+ "bugs": {
+ "url": "https://github.com/vmasto/express-babel/issues"
+ },
+ "homepage": "https://github.com/vmasto/express-babel#readme",
+ "directories": {
+ "test": "test"
+ }
}