-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
executable file
·109 lines (109 loc) · 4.49 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "app",
"version": "5.6.62",
"description": "All-in-one bookmark manager",
"author": "Rustem Mussabekov",
"license": "MIT",
"main": "index.js",
"sideEffects": false,
"scripts": {
"local": "webpack serve --config build/web.js",
"local:extension:chrome": "webpack serve --config build/extension.js --env vendor=chrome",
"local:extension:opera": "webpack serve --config build/extension.js --env vendor=opera",
"local:electron": "webpack serve --config build/electron.js",
"local:prod": "npm run build && serve dist/web/prod -l 80",
"build": "webpack --config build/web.js --env production",
"build:extension": "npm run build:extension:chrome && npm run build:extension:edge && npm run build:extension:firefox && npm run build:extension:opera && npm run build:extension:safari && npm run build:extension:safari-ios",
"build:extension:chrome": "webpack --config build/extension.js --env production --env vendor=chrome",
"build:extension:edge": "webpack --config build/extension.js --env production --env vendor=edge",
"build:extension:firefox": "webpack --config build/extension.js --env production --env vendor=firefox",
"build:extension:opera": "webpack --config build/extension.js --env production --env vendor=opera",
"build:extension:safari": "webpack --config build/extension.js --env production --env vendor=safari && cd 'build/xcode/Save to Raindrop.io' && ./version.sh",
"build:extension:safari-ios": "webpack --config build/extension.js --env production --env vendor=safari-ios",
"build:electron": "webpack --config build/electron.js --env production",
"size": "webpack --config build/web.js --env production --profile --json > dist/web-stats.json && webpack-bundle-analyzer dist/web-stats.json dist/web",
"size:extension:chrome": "webpack --config build/extension.js --env production --env vendor=chrome --profile --json > dist/extension-chrome-stats.json && webpack-bundle-analyzer dist/extension-chrome-stats.json dist/chrome/prod",
"deploy:prod": "git branch -f release/production master && git push --force origin release/production",
"postinstall": "patch-package"
},
"dependencies": {
"@juggle/resize-observer": "^3.3.0",
"@sentry/react": "^6.0.0",
"date-fns": "^2.28.0",
"dompurify": "^2.2.0",
"downshift": "^6.1.0",
"form-request-submit-polyfill": "^2.0.0",
"intersection-observer": "^0.12.0",
"lodash-es": "^4.17.0",
"marked": "^9.1.5",
"normalize-url": "^7.0.0",
"rc-resize-observer": "^1.0.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-portal": "^4.2.1",
"react-router-dom": "^6.3.0",
"react-sortablejs": "6.0.3",
"react-textarea-autosize": "^8.5.0",
"react-window": "^1.8.5",
"sortablejs": "^1.12.0",
"validator": "^13.7.0",
"webextension-polyfill": "^0.8.0"
},
"optionalDependencies": {
"@sentry/minimal": "^6.0.0",
"localforage": "^1.10.0",
"react-redux": "^7.2.0",
"redux": "^4.0.0",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.0",
"reselect": "^4.0.0",
"seamless-immutable": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.12.13",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@sentry/webpack-plugin": "^1.18.0",
"@svgr/webpack": "^6.2.0",
"@welldone-software/why-did-you-render": "^6.2.0",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-lodash": "^3.3.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"copy-webpack-plugin": "^10.2.0",
"core-js": "3",
"css-loader": "^6.7.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"cssnano-preset-advanced": "^5.1.4",
"eslint": "^7.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0-beta.6",
"lodash-webpack-plugin": "^0.11.0",
"mini-css-extract-plugin": "^2.6.0",
"patch-package": "^6.2.2",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"serve": "^13.0.0",
"style-loader": "^3.3.0",
"stylus": "^0.57.0",
"stylus-loader": "^6.2.0",
"svg-sprite-loader": "^6.0.0",
"svgo-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.0",
"val-loader": "^4.0.0",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.7.0",
"webpack-merge": "^5.8.0",
"webpack-pwa-manifest": "^4.0.0",
"zip-webpack-plugin": "^4.0.0"
}
}