SecureNotes/package.json

57 lines
1.8 KiB
JSON
Raw Normal View History

2019-01-27 20:29:33 +00:00
{
"name": "@hibas123/securenotes2",
2019-03-25 01:25:08 +00:00
"version": "2.0.0-alpha.1",
2019-01-27 20:29:33 +00:00
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"start": "webpack-dev-server --mode=production",
"start:prod": "webpack-dev-server --mode=production",
"start:dev": "webpack-dev-server --mode=development"
},
"author": "Fabian Stamm <dev@fabianstamm.de>",
"license": "MIT",
"dependencies": {
2019-04-30 16:22:09 +00:00
"@hibas123/secure-file-wrapper": "^2.5.0",
2019-05-31 18:48:44 +00:00
"@hibas123/utils": "^2.1.0",
2019-01-27 20:29:33 +00:00
"aes-js": "^3.1.2",
2019-04-30 16:22:09 +00:00
"feather-icons": "^4.21.0",
"idb": "3.0.2",
2019-01-27 20:29:33 +00:00
"js-sha256": "^0.9.0",
"js-sha512": "^0.8.0",
"lodash.clonedeep": "^4.5.0",
"secure-file-wrapper": "git+https://git.stamm.me/OpenServer/OSSecureFileWrapper.git",
2019-05-31 18:48:44 +00:00
"uikit": "^3.1.5",
2019-06-03 14:51:11 +00:00
"uuid": "^3.3.2",
"workbox-precaching": "^4.3.1",
"workbox-routing": "^4.3.1",
"workbox-strategies": "^4.3.1"
2019-01-27 20:29:33 +00:00
},
"devDependencies": {
2019-03-25 01:25:08 +00:00
"@types/lodash.clonedeep": "^4.5.6",
2019-04-30 16:22:09 +00:00
"@types/uikit": "^2.27.7",
2019-01-27 20:29:33 +00:00
"@types/uuid": "^3.4.4",
2019-06-03 14:51:11 +00:00
"@types/workbox-sw": "^4.2.0",
2019-05-31 18:48:44 +00:00
"copy-webpack-plugin": "^5.0.3",
2019-03-25 01:25:08 +00:00
"css-loader": "^2.1.1",
2019-01-27 20:29:33 +00:00
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
2019-05-31 18:48:44 +00:00
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
2019-01-27 20:29:33 +00:00
"preact": "^8.3.1",
"preact-svg-loader": "^0.2.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
2019-05-31 18:48:44 +00:00
"ts-loader": "^6.0.2",
"typescript": "^3.5.1",
"webpack": "^4.32.2",
2019-04-30 16:22:09 +00:00
"webpack-bundle-analyzer": "^3.3.2",
2019-05-31 18:48:44 +00:00
"webpack-cli": "^3.3.2",
2019-06-03 14:51:11 +00:00
"webpack-dev-server": "^3.5.1",
2019-01-27 20:29:33 +00:00
"webpack-visualizer-plugin": "^0.1.11",
2019-05-31 18:48:44 +00:00
"workbox-webpack-plugin": "^4.3.1",
2019-01-27 20:29:33 +00:00
"worker-loader": "^2.0.0"
}
2019-04-30 16:22:09 +00:00
}