forked from WebMemex/webmemex-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.47 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
76
77
78
{
"name": "webmemex-extension",
"version": "0.1.0",
"homepage": "https://webmemex.org",
"repository": {
"type": "git",
"url": "https://github.com/WebMemex/webmemex-extension.git"
},
"scripts": {
"build-prod": "gulp build-prod",
"build": "gulp build",
"watch": "gulp watch",
"test": "npm run lint",
"fx-run": "web-ext -s extension run",
"fx-build": "npm run build-prod && web-ext -s extension -a dist/firefox build",
"lint": "eslint --ext js,jsx . && stylelint '**/*.css'",
"lint-fix": "eslint --ext js,jsx --fix ."
},
"dependencies": {
"babel-runtime": "^6.23.0",
"classnames": "^2.2.5",
"diff-match-patch": "^1.0.0",
"docuri": "^4.2.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"page-metadata-parser": "git+https://github.com/Treora/page-metadata-parser.git#npm-testable",
"pouchdb-browser": "^6.1.0",
"pouchdb-find": "^0.10.4",
"pouchdb-quick-search": "^1.2.0",
"pouchdb-upsert": "^2.0.2",
"react": "^15.4.1",
"react-datepicker": "^0.43.0",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"react-router": "^3.0.2",
"readability": "git+https://github.com/mozilla/readability.git#2b28d60",
"redux": "^3.6.0",
"redux-act": "^1.1.0",
"redux-observable": "^0.12.2",
"redux-thunk": "^2.1.0",
"rxjs": "^5.0.3",
"tldjs": "^1.7.0",
"webextension-polyfill": "^0.1.0"
},
"devDependencies": {
"autoprefixer": "^6.7.5",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"css-modulesify": "^0.27.1",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-config-standard-react": "^4.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.1.1",
"gulp": "^3.9.1",
"gulp-identity": "^0.1.0",
"gulp-uglify": "^2.0.1",
"loose-envify": "^1.3.0",
"postcss-cssnext": "^2.9.0",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"uglifyify": "^3.0.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.8.0",
"web-ext": "^1.8.1"
}
}