-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
97 lines (97 loc) · 3.36 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
{
"name": "tgstorage",
"version": "1.0.0",
"description": "tgstorage",
"author": "Alexander Shershnev",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/sh-a-v/tgstorage.git"
},
"bugs": {
"url": "https://github.com/sh-a-v/tgstorage/issues"
},
"homepage": "https://github.com/sh-a-v/tgstorage#readme",
"scripts": {
"dev": "npm run clean && BUILD_ENV=dev NODE_ENV=development webpack serve --progress",
"prod": "npm run clean && BUILD_ENV=dev NODE_ENV=production webpack serve --progress",
"build": "BUILD_ENV=prod NODE_ENV=production webpack && npm run inject-sw-manifest",
"clean": "rimraf build",
"lint": "eslint src --ext .js,.ts,.tsx",
"lint-fix": "eslint src --fix --ext .js,.ts,.tsx",
"analyze-bundle": "npm run clean && BUNDLE_ANALYZER=true BUILD_ENV=dev NODE_ENV=production webpack",
"check-es5": "npx are-you-es5 check ./",
"generate-pwa-images": "npx pwa-asset-generator ./src/ui/icons/app.svg ./src/ui/images --background '#0082C8' --opaque false --type png --splash-only",
"inject-sw-manifest": "workbox injectManifest workbox.config.js"
},
"dependencies": {
"@cryptography/aes": "0.1.1",
"@cryptography/pbkdf2": "0.1.2",
"@cryptography/sha1": "0.2.0",
"@cryptography/sha256": "0.2.0",
"@cryptography/sha512": "0.2.0",
"@sentry/browser": "8.13.0",
"classnames": "2.3.1",
"comlink": "4.3.1",
"copy-to-clipboard": "3.3.1",
"core-js": "3.23.1",
"drag-drop-touch": "1.3.1",
"idb-keyval": "6.1.0",
"latinize": "0.5.0",
"pointer-tracker": "2.5.3",
"preact": "10.8.0",
"resize-observer-polyfill": "1.5.1",
"sanitize-markdown": "2.6.7",
"stackblur-canvas": "2.5.0",
"sync-task-queue": "1.0.4",
"unistore": "3.5.2",
"unistore-hooks": "0.1.1",
"workbox-core": "6.5.3",
"workbox-precaching": "6.5.3",
"workbox-routing": "6.5.3",
"workbox-window": "6.5.3"
},
"devDependencies": {
"@babel/core": "7.18.5",
"@babel/plugin-proposal-export-namespace-from": "7.17.12",
"@babel/plugin-transform-react-jsx": "7.17.12",
"@babel/preset-env": "7.18.2",
"@babel/preset-typescript": "7.17.12",
"@sentry/webpack-plugin": "2.20.1",
"@types/classnames": "2.3.0",
"@types/node": "17.0.43",
"@types/webpack-env": "1.17.0",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"autoprefixer": "10.4.7",
"babel-loader": "8.2.5",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "4.0.0",
"dotenv": "16.0.1",
"eslint": "8.17.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.6.0",
"html-inline-css-webpack-plugin": "1.11.1",
"html-loader": "3.1.0",
"html-webpack-plugin": "5.5.0",
"html-webpack-skip-assets-plugin": "1.0.3",
"mini-css-extract-plugin": "2.6.0",
"postcss": "8.4.14",
"postcss-loader": "7.0.0",
"preact-svg-loader": "0.2.1",
"rimraf": "3.0.2",
"style-loader": "3.3.1",
"stylus": "0.58.1",
"stylus-loader": "7.0.0",
"terser-webpack-plugin": "5.3.3",
"typescript": "4.7.3",
"webpack": "5.73.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.9.2",
"webpack-webmanifest-loader": "2.0.2",
"workbox-cli": "6.5.3",
"worker-loader": "3.0.8"
}
}