-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
80 lines (80 loc) · 2.29 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
{
"name": "brave-talk-app",
"version": "0.1.0",
"description": "private and unlimited video calling by Brave",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js --mode production",
"format": "prettier --write .",
"lint": "eslint src/",
"start": "webpack serve --config webpack.config.js --mode development",
"test": "jest",
"prepare": "husky",
"check": "run-p -l check:*",
"check:build": "tsc",
"check:audit": "npm audit",
"check:lint": "eslint src/",
"check:format": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/brave/brave-talk.git"
},
"overrides": {
"yaml": "2.6.1",
"semver": "7.6.3",
"optionator": "0.9.4",
"cookie": "0.7.2"
},
"homepage": "https://github.com/brave/brave-talk#readme",
"devDependencies": {
"@brave-intl/skus-sdk": "0.1.3",
"@types/jest": "29.5.14",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"copy-webpack-plugin": "12.0.2",
"css-loader": "6.11.0",
"css-minimizer-webpack-plugin": "6.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"html-webpack-plugin": "5.6.3",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"mini-css-extract-plugin": "2.9.2",
"node-forge": "1.3.1",
"npm-run-all2": "6.2.6",
"prettier": "3.4.1",
"style-loader": "3.3.4",
"svgo-loader": "4.0.0",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"typescript": "5.7.2",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0"
},
"dependencies": {
"@brave/leo": "github:brave/leo#1604c652f7aae08a792f26a44fff5187a4e19406",
"@emotion/react": "11.13.5",
"@types/dom-screen-wake-lock": "1.0.3",
"buffer": "6.0.3",
"ethers": "6.13.4",
"i18next": "23.16.8",
"jest-environment-jsdom": "29.7.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "14.1.3"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.ts?(x)": "eslint"
},
"resolutions": {
"svelte": "4.2.19"
}
}