-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
98 lines (98 loc) · 3.09 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "webmemex-extension",
"version": "0.4.1",
"homepage": "https://webmemex.org",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/WebMemex/webmemex-extension.git"
},
"scripts": {
"build-prod": "rm -rf ./extension && gulp build-prod",
"build": "rm -rf ./extension && gulp build",
"watch": "rm -rf ./extension && gulp watch",
"package": "gulp package",
"publish": "gulp publish",
"test": "jest --verbose --config=.jest-config.json",
"firefox": "web-ext -s extension run --bc",
"lint": "gulp lint",
"lint-fix": "eslint --ext js,jsx --fix src/"
},
"dependencies": {
"blob-util": "^2.0.2",
"classnames": "^2.2.6",
"docuri": "^4.2.2",
"freeze-dry": "^0.2.4",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"page-metadata-parser": "^1.1.4",
"pouchdb-browser": "^7.2.1",
"pouchdb-find": "^7.2.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-datepicker": "^3.1.3",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-waypoint": "^9.0.3",
"redux": "^4.0.5",
"redux-act": "^1.8.0",
"redux-devtools": "^3.5.0",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"redux-observable": "^1.2.0",
"redux-query-sync": "^0.1.9",
"redux-thunk": "^2.3.0",
"rxjs": "^6.6.0",
"semantic-ui-css": "git+https://github.com/Treora/semantic-ui-css.git#488f361",
"semantic-ui-react": "^0.88.2",
"semver-compare": "^1.0.0",
"webextension-polyfill": "^0.6.0",
"webextension-rpc": "^0.1.0",
"when-all-settled": "^0.1.3"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"@wulechuan/css-stylus-markdown-themes": "^6.4.12",
"@wulechuan/gulp-markdown-to-html": "^2.9.2",
"babel-jest": "^26.1.0",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"crx": "^5.0.1",
"css-modulesify": "git+https://github.com/Treora/css-modulesify.git#95447d1",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-standard": "^4.0.1",
"gulp": "^4.0.2",
"gulp-add-src": "^1.0.0",
"gulp-cli": "^2.3.0",
"gulp-clip-empty-files": "^0.1.2",
"gulp-concat-css": "^3.1.0",
"gulp-eslint": "^6.0.0",
"gulp-identity": "^0.1.0",
"gulp-stylelint": "^13.0.0",
"gulp-terser": "^1.2.0",
"identity-obj-proxy": "^3.0.0",
"indefinitely": "^1.0.0",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"jest-fetch-mock": "^3.0.3",
"loose-envify": "^1.4.0",
"postcss-preset-env": "^6.7.0",
"stream-to-promise": "^3.0.0",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1",
"web-ext": "^4.3.0"
}
}