76 строки
2.3 KiB
JSON
76 строки
2.3 KiB
JSON
{
|
|
"name": "price-tracker",
|
|
"version": "23.0.0",
|
|
"description": "Price Tracker is a Firefox extension that tracks price changes to help you find the best time to buy.",
|
|
"private": true,
|
|
"author": "Mozilla",
|
|
"license": "MPL-2.0",
|
|
"scripts": {
|
|
"start": "web-ext run --source-dir build",
|
|
"build": "webpack --config webpack/dev.config.js",
|
|
"build:prod": "webpack --config webpack/prod.config.js",
|
|
"watch": "webpack --watch --config webpack/dev.config.js",
|
|
"watch:prod": "webpack --watch --config webpack/prod.config.js",
|
|
"package": "web-ext build --source-dir build --overwrite-dest",
|
|
"lint": "bin/run_lints.sh",
|
|
"test": "bin/run_tests.py"
|
|
},
|
|
"config": {
|
|
"firefox_bin": ""
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "6.26.3",
|
|
"babel-eslint": "8.2.6",
|
|
"babel-loader": "7.1.5",
|
|
"babel-plugin-syntax-object-rest-spread": "6.13.0",
|
|
"babel-plugin-transform-class-properties": "6.24.1",
|
|
"babel-plugin-transform-decorators-legacy": "1.3.5",
|
|
"babel-preset-react": "6.24.1",
|
|
"copy-webpack-plugin": "4.5.2",
|
|
"css-loader": "1.0.0",
|
|
"enzyme": "3.9.0",
|
|
"enzyme-adapter-react-16": "1.1.1",
|
|
"eslint": "4.19.1",
|
|
"eslint-config-airbnb": "17.0.0",
|
|
"eslint-import-resolver-webpack": "0.10.1",
|
|
"eslint-plugin-import": "2.13.0",
|
|
"eslint-plugin-jsx-a11y": "6.0.3",
|
|
"eslint-plugin-react": "7.10.0",
|
|
"generate-json-webpack-plugin": "0.3.1",
|
|
"null-loader": "0.1.1",
|
|
"style-loader": "0.21.0",
|
|
"stylelint": "9.10.1",
|
|
"stylelint-config-standard": "18.2.0",
|
|
"tap-mocha-reporter": "3.0.7",
|
|
"tape": "4.9.1",
|
|
"web-ext": "^3.1.1",
|
|
"webpack": "4.15.1",
|
|
"webpack-command": "0.3.1",
|
|
"webpack-merge": "4.1.4"
|
|
},
|
|
"dependencies": {
|
|
"autobind-decorator": "2.1.0",
|
|
"dinero.js": "1.4.0",
|
|
"fathom-web": "3.0.0",
|
|
"lodash.maxby": "4.6.0",
|
|
"lodash.minby": "4.6.0",
|
|
"lodash.orderby": "4.6.0",
|
|
"prop-types": "15.6.2",
|
|
"react": "16.4.1",
|
|
"react-dom": "16.4.1",
|
|
"react-redux": "5.0.7",
|
|
"redux": "4.0.0",
|
|
"redux-thunk": "2.3.0",
|
|
"uuid": "3.3.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mozilla/price-tracker.git"
|
|
},
|
|
"keywords": [],
|
|
"bugs": {
|
|
"url": "https://github.com/mozilla/price-tracker/issues"
|
|
},
|
|
"homepage": "https://github.com/mozilla/price-tracker"
|
|
}
|