-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.16 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
{
"name": "parachain-utilities",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"eslint": "eslint src/**/*.{ts,tsx}",
"prettier": "prettier --check src/**/*.{ts,tsx,json,css,less}",
"prettier:fix": "prettier --write src/**/*.{ts,tsx,json,css,less}"
},
"resolutions": {
"@polkadot/types": "^6.12.1",
"@polkadot/util": "^8.2.2",
"@polkadot/util-crypto": "^8.2.2"
},
"dependencies": {
"@ant-design/icons": "^4.6.4",
"@craco/craco": "^6.4.3",
"@polkadot/api": "^7.2.1",
"@polkadot/apps-config": "^0.100.1",
"@polkadot/types": "^7.2.1",
"@polkadot/util": "^8.2.2",
"antd": "^4.16.13",
"craco-antd": "^1.19.0",
"i18next": "^21.6.5",
"moment": "^2.29.2",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-redux": "^7.2.5",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"redux": "^4.1.1",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-copy-to-clipboard": "^5.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.8",
"@types/webfontloader": "^1.6.33",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"prettier": "^2.5.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"semi": false
}
}