-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
94 lines (94 loc) · 2.63 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
{
"name": "calamar",
"version": "0.1.0",
"private": true,
"homepage": "https://calamar.app",
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.14",
"@polkadot/keyring": "^11.1.1",
"@polkadot/react-identicon": "^3.1.1",
"@polkadot/types": "^10.1.4",
"@polkadot/util": "^11.1.1",
"@polkadot/util-crypto": "^11.1.1",
"@rollbar/react": "^0.11.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.7",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"decimal.js": "^10.4.3",
"deepmerge": "^4.3.1",
"dexie": "^3.2.4",
"echarts": "^5.4.2",
"http-status-codes": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.17.0",
"react-scripts": "5.0.1",
"rollbar": "^2.26.1",
"swr": "^2.2.4",
"ts-custom-error": "^3.3.1",
"typescript": "^4.9.5",
"web-vitals": "^3.3.0"
},
"scripts": {
"start": "cross-env BROWSER=none react-scripts start",
"start:test": "serve ./build -s",
"build": "cross-env CI=false react-scripts build",
"test": "playwright test",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report test/report",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"update-networks": "ts-node scripts/update-networks/main.ts"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@argos-ci/cli": "^0.4.4",
"@emotion/eslint-plugin": "^11.10.0",
"@playwright/test": "^1.40.0",
"@polkadot/api": "^10.1.4",
"@polkadot/apps-config": "^0.124.1",
"@subsquid/archive-registry": "^2.1.9",
"@subsquid/ss58": "^0.1.4",
"@types/pluralize": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"cli-table3": "^0.6.3",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"pluralize": "^8.0.0",
"serve": "^14.2.0",
"ts-node": "^10.9.1"
}
}