-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.78 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
{
"name": "aesirx-consent",
"version": "1.0.1",
"license": "GPL-3.0-only",
"author": "AesirX",
"repository": "https://github.com/aesirxio/consent",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"dependencies": {
"@concordium/browser-wallet-api-helpers": "3.0.1",
"@concordium/react-components": "0.6.1",
"@concordium/web-sdk": "7.0.4-rc.3",
"@web3modal/ethereum": "^2.7.0",
"@web3modal/react": "^2.7.0",
"aesirx-sso": "^1.5.1",
"aesirx-analytics": "^2.4.0",
"axios": "^1.7.4",
"bootstrap": "^5.3.2",
"bowser": "^2.11.0",
"buffer": "^6.0.3",
"ethers": "^6.6.5",
"i18next": "^23.6.0",
"i18next-browser-languagedetector": "^7.2.1",
"murmurhash-js": "^1.0.0",
"next": "^14.2.10",
"query-string": "^7.1.1",
"react": "^18.3.1",
"react-bootstrap": "^2.8.0",
"react-content-loader": "^7.0.0",
"react-device-detect": "^2.2.3",
"react-dom": "18",
"react-select": "^5.8.0",
"react-toastify": "^9.1.3",
"wagmi": "^1.3.2"
},
"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}\"",
"test": "jest"
},
"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/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.23.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/murmurhash-js": "^1.0.3",
"@types/node": "^20.8.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@walletconnect/types": "^2.10.0",
"dotenv": "^16.0.3",
"esbuild-plugin-inline-image": "^0.0.9",
"esbuild-sass-plugin": "^3.0.0",
"esbuild-scss-modules-plugin": "^1.1.1",
"eslint": "^8.48.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.4.3",
"node-fetch": "^3.3.1",
"prettier": "^3.0.3",
"react-i18next": "^13.1.2",
"ts-jest": "^29.0.5",
"tsup": "^7.2.0",
"typescript": "5.1.6"
},
"files": [
"dist"
],
"resolutions": {
"postcss": "^8",
"ws": "8.17.1",
"cookie": "^0.7.0",
"rollup": "3.29.5"
}
}