-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
101 lines (101 loc) · 3.11 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
{
"name": "LeapChat",
"version": "0.7.8",
"description": "Self-destructing, encrypted, in-browser chat",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint ./src",
"build": "node_modules/.bin/webpack --config webpack.config.prod.js",
"start": "npm run build && ./leapchat",
"dev": "node_modules/.bin/webpack --config webpack.config.dev.js --progress",
"be": "./leapchat",
"mocha": "./node_modules/.bin/mocha --reporter nyan test/.setup.js test/**/*.test.js",
"playwright": "npx playwright test",
"webtest": "npx playwright test --headed",
"test": "npm run mocha && npm run playwright",
"lintfix": "./node_modules/.bin/eslint --fix --parser @babel/eslint-parser --ext js --no-eslintrc --rule 'indent: [\"error\", 2]' --rule 'semi: [2]' ./src"
},
"repository": {
"type": "git",
"url": "git://github.com/cryptag/leapchat.git"
},
"keywords": [
"cryptag",
"messaging",
"chat",
"privacy",
"security",
"encryption",
"file",
"sharing"
],
"author": "Steve Phillips <steve@tryingtobeawesome.com>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/cryptag/leapchat/issues"
},
"homepage": "https://github.com/cryptag/leapchat#readme",
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@emoji-mart/data": "^1.1.2",
"atob": "^2.1.2",
"babel-loader": "^9.1.2",
"btoa": "^1.2.1",
"crypto-browserify": "^3.12.0",
"emoji-datasource-apple": "^3.0.0",
"emoji-js": "^3.5.0",
"emoji-mart": "^1.0.1",
"guid": "0.0.12",
"jquery": "^3.6.3",
"js-sha512": "^0.8.0",
"markdown-it": "^13.0.1",
"minisearch": "^6.0.1",
"react": "^18.2.0",
"react-bootstrap": "^2.7.2",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-redux": "^8.0.5",
"redux": "^4.2.1",
"stream-browserify": "^3.0.0",
"utf8": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.18.9",
"@playwright/test": "^1.30.0",
"@webpack-cli/generators": "^3.0.1",
"babel-plugin-system-import-transformer": "^4.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"blake2s": "^1.1.0",
"bootstrap": "^5.2.3",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"chai": "^4.3.7",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^6.7.3",
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.32.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^10.1.0",
"mini-css-extract-plugin": "^2.7.2",
"mocha": "^10.2.0",
"node-env-file": "^0.1.8",
"node-sass": "^8.0.0",
"playwright": "^1.30.0",
"prettier": "^2.8.4",
"redux-observable": "^0.19.0",
"rxjs": "^5.5.12",
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}