-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.8 KB
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
{
"name": "quadrix",
"productName": "quadrix.chat",
"private": true,
"main": "index.js",
"version": "1.7.2",
"description": "Minimal, simple, multi-platform chat client for the Matrix protocol",
"author": "Jean-François Alarie <alariej@quadrix.chat>",
"homepage": "https://quadrix.chat",
"scripts": {
"rncli": "node scripts/react-native.js",
"start:rndev": "npm run rncli -- start --reset-cache",
"start:android": "npm run rncli -- run-android",
"start:ios": "npm run rncli -- run-ios",
"start:web": "cross-env platform=web webpack serve --config=web/webpack/dev.js --progress --mode=development --host 0.0.0.0",
"build:web": "cross-env platform=web webpack --config=web/webpack/prod.js --progress --mode=production",
"lint": "eslint --config .eslintrc --ext .ts,.tsx src"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-decorators": "7.20.2",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "7.18.6",
"@babel/preset-env": "^7.20.0",
"@types/linkifyjs": "2.1.4",
"@types/lodash": "4.14.194",
"@types/react": "^18.0.24",
"@types/react-native": "0.71.6",
"@types/semver": "7.3.13",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"babel-loader": "9.1.2",
"compression-webpack-plugin": "10.0.0",
"cross-env": "7.0.3",
"electron": "24.1.3",
"eslint": "^8.19.0",
"eslint-plugin-react": "7.32.2",
"eslint-webpack-plugin": "3.2.0",
"file-loader": "6.2.0",
"fork-ts-checker-webpack-plugin": "7.2.13",
"html-webpack-plugin": "5.5.1",
"metro-react-native-babel-preset": "0.73.9",
"prettier": "2.8.8",
"typescript": "4.8.4",
"webpack": "5.81.0",
"webpack-cli": "5.0.2",
"webpack-dev-server": "4.13.3",
"webpack-merge": "5.8.0"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.18.1",
"@react-native-community/netinfo": "9.3.9",
"@react-native-firebase/app": "17.4.3",
"@react-native-firebase/messaging": "17.4.3",
"axios": "0.27.2",
"date-fns": "2.29.3",
"linkifyjs": "4.1.1",
"lodash": "4.17.21",
"matrix-widget-api": "1.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-image-file-resizer": "0.4.8",
"react-native": "0.71.7",
"react-native-blob-util": "0.17.3",
"react-native-compressor": "1.6.1",
"react-native-create-thumbnail": "v2.0.0-rc.2",
"react-native-device-info": "10.6.0",
"react-native-document-picker": "8.2.0",
"react-native-fast-image": "8.6.3",
"react-native-file-access": "2.6.0",
"react-native-image-picker": "5.3.1",
"react-native-share": "8.2.2",
"react-native-sound": "0.11.2",
"react-native-svg": "13.9.0",
"react-native-webview": "11.26.1",
"reactxp": "github:alariej/reactxp",
"resub": "github:alariej/ReSub",
"semver": "7.3.8",
"simplerestclients": "1.0.0"
}
}