zigbee2mqtt-frontend
Advanced tools
Comparing version 0.1.49 to 0.1.50
@@ -0,1 +1,10 @@ | ||
## [0.1.50](https://github.com/nurikk/z2m-frontend/compare/0.1.49...0.1.50) (2020-09-08) | ||
### Features | ||
* **touchlink:** implement api calls ([d2776e7](https://github.com/nurikk/z2m-frontend/commit/d2776e76982323acabf8cf330bf039691ab8b848)) | ||
## [0.1.49](https://github.com/nurikk/z2m-frontend/compare/0.1.48...0.1.49) (2020-09-08) | ||
@@ -2,0 +11,0 @@ |
@@ -1,5 +0,5 @@ | ||
const path = require('path'); | ||
const path = require("path"); | ||
module.exports = { | ||
getPath: () => path.join(__dirname, 'dist'), | ||
}; | ||
getPath: () => path.join(__dirname, "dist"), | ||
}; |
172
package.json
{ | ||
"private": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"sideEffects": [ | ||
"*.css" | ||
], | ||
"name": "zigbee2mqtt-frontend", | ||
"version": "0.1.49", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "npm run clean && webpack --config ./webpack.config.js --mode production", | ||
"dev": "npm run clean && webpack --config ./webpack.config.js --mode development", | ||
"start": "concurrently 'npm run start:ws' 'npm run start:dev'", | ||
"start:dev": "webpack-dev-server --config ./webpack.config.js --mode development", | ||
"start:ws": "node ws.js", | ||
"clean": "rimraf ./dist", | ||
"release": "release-it", | ||
"postversion": "git push && git push --tags", | ||
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md" | ||
}, | ||
"eslintIgnore": [ | ||
"dist/*" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^9.1.2", | ||
"@commitlint/config-conventional": "^9.1.2", | ||
"@fortawesome/fontawesome-free": "^5.13.0", | ||
"@teamsupercell/typings-for-css-modules-loader": "^2.2.0", | ||
"@types/classnames": "^2.2.10", | ||
"@types/codemirror": "0.0.95", | ||
"@types/d3": "^5.7.2", | ||
"@types/history": "^4.7.6", | ||
"@types/lodash": "^4.14.155", | ||
"@types/luaparse": "^0.2.6", | ||
"@types/notyf": "^3.0.0", | ||
"@types/reconnectingwebsocket": "^1.0.4", | ||
"@types/superagent": "^4.1.7", | ||
"@types/webpack-env": "^1.15.2", | ||
"@types/ws": "^7.2.5", | ||
"@typescript-eslint/eslint-plugin": "^2.34.0", | ||
"@typescript-eslint/parser": "^2.34.0", | ||
"bootstrap": "^5.0.0-alpha1", | ||
"classnames": "^2.2.6", | ||
"concurrently": "^5.3.0", | ||
"conventional-changelog-cli": "^2.1.0", | ||
"css-loader": "^3.5.3", | ||
"d3": "^5.16.0", | ||
"eslint": "^6.8.0", | ||
"eslint-config-preact": "^1.1.1", | ||
"eslint-plugin-preact": "^0.1.0", | ||
"file-loader": "^6.1.0", | ||
"fork-ts-checker-webpack-plugin": "^4.1.6", | ||
"history": "^5.0.0", | ||
"html-webpack-plugin": "^4.3.0", | ||
"husky": "^4.2.5", | ||
"lodash": "^4.17.20", | ||
"mini-css-extract-plugin": "^0.9.0", | ||
"notyf": "^3.9.0", | ||
"popper.js": "^1.16.1", | ||
"preact": "^10.4.8", | ||
"preact-router": "^3.2.1", | ||
"reconnecting-websocket": "^4.4.0", | ||
"release-it": "^13.7.1", | ||
"rimraf": "^3.0.2", | ||
"ts-loader": "^7.0.5", | ||
"typescript": "^3.9.5", | ||
"unistore": "^3.5.2", | ||
"webpack": "^4.43.0", | ||
"webpack-bundle-analyzer": "^3.8.0", | ||
"webpack-cli": "3.3.11", | ||
"webpack-dev-server": "3.11.0", | ||
"ws": "^7.3.1", | ||
"zip-webpack-plugin": "^3.0.0" | ||
}, | ||
"main": "index.js", | ||
"files": [ | ||
"index.js", | ||
"dist/**/*" | ||
], | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
"private": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"sideEffects": [ | ||
"*.css" | ||
], | ||
"name": "zigbee2mqtt-frontend", | ||
"version": "0.1.50", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "npm run clean && webpack --config ./webpack.config.js --mode production", | ||
"dev": "npm run clean && webpack --config ./webpack.config.js --mode development", | ||
"start": "concurrently 'npm run start:ws' 'npm run start:dev'", | ||
"start:dev": "webpack-dev-server --config ./webpack.config.js --mode development", | ||
"start:ws": "node ws.js", | ||
"clean": "rimraf ./dist", | ||
"release": "release-it", | ||
"postversion": "git push && git push --tags", | ||
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md", | ||
"pretty": "prettier --write \"./**/*.{js,jsx,json}\"" | ||
}, | ||
"eslintIgnore": [ | ||
"dist/*" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^9.1.2", | ||
"@commitlint/config-conventional": "^9.1.2", | ||
"@fortawesome/fontawesome-free": "^5.13.0", | ||
"@teamsupercell/typings-for-css-modules-loader": "^2.2.0", | ||
"@types/classnames": "^2.2.10", | ||
"@types/codemirror": "0.0.95", | ||
"@types/d3": "^5.7.2", | ||
"@types/history": "^4.7.6", | ||
"@types/lodash": "^4.14.155", | ||
"@types/luaparse": "^0.2.6", | ||
"@types/notyf": "^3.0.0", | ||
"@types/reconnectingwebsocket": "^1.0.4", | ||
"@types/superagent": "^4.1.7", | ||
"@types/webpack-env": "^1.15.2", | ||
"@types/ws": "^7.2.5", | ||
"@typescript-eslint/eslint-plugin": "^2.34.0", | ||
"@typescript-eslint/parser": "^2.34.0", | ||
"bootstrap": "^5.0.0-alpha1", | ||
"classnames": "^2.2.6", | ||
"concurrently": "^5.3.0", | ||
"conventional-changelog-cli": "^2.1.0", | ||
"css-loader": "^3.5.3", | ||
"d3": "^5.16.0", | ||
"eslint": "^6.8.0", | ||
"eslint-config-preact": "^1.1.1", | ||
"eslint-plugin-preact": "^0.1.0", | ||
"file-loader": "^6.1.0", | ||
"fork-ts-checker-webpack-plugin": "^4.1.6", | ||
"history": "^5.0.0", | ||
"html-webpack-plugin": "^4.3.0", | ||
"husky": "^4.2.5", | ||
"lodash": "^4.17.20", | ||
"mini-css-extract-plugin": "^0.9.0", | ||
"notyf": "^3.9.0", | ||
"popper.js": "^1.16.1", | ||
"preact": "^10.4.8", | ||
"preact-router": "^3.2.1", | ||
"prettier": "^2.1.1", | ||
"reconnecting-websocket": "^4.4.0", | ||
"release-it": "^13.7.1", | ||
"rimraf": "^3.0.2", | ||
"ts-loader": "^7.0.5", | ||
"typescript": "^3.9.5", | ||
"unistore": "^3.5.2", | ||
"webpack": "^4.43.0", | ||
"webpack-bundle-analyzer": "^3.8.0", | ||
"webpack-cli": "3.3.11", | ||
"webpack-dev-server": "3.11.0", | ||
"ws": "^7.3.1", | ||
"zip-webpack-plugin": "^3.0.0" | ||
}, | ||
"main": "index.js", | ||
"files": [ | ||
"index.js", | ||
"dist/**/*" | ||
], | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2214779
2173
50