Files
webextensions-examples/store-collected-images/webextension-with-webpack/package.json
Luca Greco 7b6b03a72c Add an indexedDB file storage example: image-reference-collector (#224)
* new example: image-reference-collector (indexedDB file storage demo)

* fix: added missing deps, updated all npm dependencies and webpack config to v.2

* chore: Renamed the example to store-collected-images

* chore: Removed from utils/image-store any direct call to the UI code

* move example built using webpack into its own subdir

* tweak browser action title

* added plain webextension example (without webpack build step)

* added README.md file to plain webextension example

* small changed based on the review comments

* fixed typo in store-collected-images example (webpack-based version)

* Remove React from the store-collected-images (plain webextension version)

* Fix eslint errors on store-collected-images example (both versions)

* Fix some typos in the README files
2017-07-19 15:06:46 -07:00

39 lines
996 B
JSON

{
"name": "store-collected-images",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --display-error-details --progress --colors",
"build:watch": "npm run build -- -w",
"start": "npm run build && web-ext run -s extension/"
},
"author": "",
"license": "MPL-2.0",
"devDependencies": {
"babel-core": "6.24.1",
"babel-loader": "7.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-preset-es2017": "6.24.1",
"babel-preset-react": "6.24.1",
"idb-file-storage": "^0.1.0",
"react": "15.5.4",
"react-dom": "15.5.4",
"uuid": "^3.0.1",
"web-ext": "1.9.1",
"webpack": "2.6.1"
},
"babel": {
"presets": [
"es2017",
"react"
],
"plugins": [
"transform-class-properties",
"transform-es2015-modules-commonjs"
]
}
}