This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
92 lines (92 loc) · 2.75 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
{
"name": "alephium-explorer",
"version": "1.8.2",
"private": true,
"engines": {
"node": ">=16",
"npm": ">=8"
},
"homepage": "/",
"dependencies": {
"@alephium/sdk": "0.7.6",
"@alephium/token-list": "^0.0.11",
"@alephium/web3": "0.16.1",
"@tanstack/query-sync-storage-persister": "4.32.0",
"@tanstack/react-query": "4.32.0",
"@tanstack/react-query-persist-client": "^4.32.0",
"apexcharts": "^3.35.0",
"colord": "^2.9.3",
"dayjs": "^1.10.7",
"framer-motion": "^6.5.1",
"i18next": "^23.4.6",
"lodash": "^4.17.21",
"prettier": "^2.4.1",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.1",
"react-icons": "^4.10.1",
"react-is": "^18.0.0",
"react-middle-ellipsis": "^1.2.1",
"react-page-visibility": "^7.0.0",
"react-router-dom": "^6.3.0",
"react-tooltip": "^5.20.0",
"styled-components": "^5.3.1",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-page-visibility": "^6.4.1",
"@types/react-router-dom": "^5.3.0",
"@types/styled-components": "^5.1.14",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitejs/plugin-react": "^4.0.0",
"esbuild": "^0.17.11",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"happy-dom": "^7.6.6",
"rollup-plugin-node-polyfills": "^0.2.1",
"serve": "^14.1.2",
"typescript": "^4.4.3",
"vite": "^4.3.9",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.31.0"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build --outDir build",
"gh-pages-build": "tsc && vite build --outDir build --base=/explorer/",
"serve": "node docker/init-server-data.js && serve -s build -p 3000",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --fix --ext .ts,.tsx",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}