-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
112 lines (112 loc) · 3.07 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
102
103
104
105
106
107
108
109
110
111
112
{
"name": "aesirx-sso",
"version": "1.5.1",
"license": "GPL-3.0-only",
"author": "AesirX",
"repository": "https://github.com/aesirxio/sso",
"main": "build/lib/index.js",
"types": "build/lib/types/index.d.ts",
"source": "src/index.js",
"dependencies": {
"@concordium/browser-wallet-api-helpers": "3.0.1",
"@concordium/react-components": "0.6.1",
"@concordium/web-sdk": "7.1.0",
"@fingerprintjs/fingerprintjs": "3.4.2",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@wagmi/core": "^1.3.8",
"@web3modal/ethereum": "^2.7.0",
"@web3modal/react": "^2.7.0",
"aesirx-lib": "^2.1.2",
"axios": "^1.7.7",
"bootstrap": "^5.3.3",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"ethers": "^6.7.1",
"formik": "^2.4.4",
"friendly-challenge": "^0.9.13",
"lodash": "^4.17.21",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-device-detect": "^2.2.3",
"react-lazy-load-image-component": "^1.6.0",
"react-secure-storage": "^1.3.2",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.3",
"reactstrap": "^9.2.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.2",
"viem": "^1.0.0",
"bowser": "^2.11.0",
"wagmi": "^1.3.2",
"yup": "^1.3.2"
},
"resolutions": {
"ws": "8.17.1"
},
"tsup": {
"entry": [
"src/index.tsx"
],
"splitting": false,
"sourcemap": true,
"clean": true
},
"scripts": {
"dev": "NODE_ENV=development tsup --watch",
"build": "tsup",
"lint": "eslint --fix \"src/**/\"",
"lint:check": "eslint \"src/**/\"",
"lint:nowarns": "eslint --quiet \"src/**/\"",
"prepublishOnly": "yarn run build",
"format:check": "prettier --check \"./src/**/*.{js,jsx,ts,tsx}\"",
"format:write": "prettier --write \"./src/**/*.{js,jsx,ts,tsx}\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.22",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@types/bootstrap": "^5.2.10",
"@types/lodash": "^4.14.198",
"@types/node": "^20.8.0",
"@types/react": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@walletconnect/types": "^2.9.1",
"babel-plugin-module-resolver": "^5.0.0",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-sass-plugin": "^2.10.0",
"eslint": "^8.35",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.3",
"tsup": "^6.7.0",
"typescript": "^5.4.5"
},
"files": [
"build"
]
}