This repository has been archived by the owner on Dec 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
75 lines (75 loc) · 2.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"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"
}