-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.93 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
{
"name": "gosti-streaming-tools",
"version": "0.1.0",
"author": "Gaerax <gaerax@gmail.com>",
"license": "Apache-2.0",
"description": "Gosti Streaming tools",
"private": true,
"homepage": "./",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/joy": "^5.0.0-beta.32",
"@mui/material": "^5.11.6",
"@mui/types": "^7.2.3",
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3",
"@tauri-apps/api": "^1.5.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.11",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@walletconnect/modal": "^2.6.0",
"@walletconnect/sign-client": "^2.9.1",
"@walletconnect/types": "^2.9.1",
"@walletconnect/utils": "^2.9.1",
"axios": "^1.3.0",
"bech32": "^2.0.0",
"buffer": "^6.0.3",
"caip-api": "^2.0.0-beta.1",
"ethers": "^5.7.2",
"js-sha256": "^0.9.0",
"node-gyp": "^9.3.1",
"node-jsonrpc-client": "^2.0.0",
"nostr-tools": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.5",
"react-router-dom": "^6.22.3",
"react-scripts": "5.0.1",
"react-slideshow-image": "^4.3.0",
"react-split": "^2.0.14",
"rebuild": "^0.1.2",
"semver": "^7.6.0",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^5.3.3",
"uuid": "^9.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build2": "tsc",
"test": "react-scripts test",
"eject": "react-scripts eject",
"check": "npm run check:lint ; npm run check:prettier ; npm run check:types",
"check:lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"check:prettier": "prettier --check --ignore-path .gitignore .",
"check:types": "lerna exec --scope '{@chia-network/api,@chia-network/icons}' -- npm run check:types",
"check:typesEverywhere": "lerna exec -- npm run check:types",
"autofix": "npm run autofix:lint ; npm run autofix:prettier",
"autofix:lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"autofix:prettier": "prettier --write --ignore-path .gitignore ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "45.0.2",
"husky": "8.0.0",
"lerna-audit": "^1.3.3",
"lint-staged": "13.1.2",
"prettier": "2.8.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}