-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.17 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.17 KB
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
{
"name": "dapp",
"version": "0.2.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@gear-js/api": "0.33.2",
"@gear-js/react-hooks": "0.6.4",
"@gear-js/ui": "0.5.19",
"@mantine/form": "6.0.8",
"@polkadot/api": "10.3.4",
"@polkadot/extension-dapp": "0.45.5",
"@polkadot/react-identicon": "3.1.4",
"@polkadot/types": "10.3.4",
"@polkadot/util": "11.1.3",
"@polkadot/util-crypto": "^12.2.2",
"@polkadot/wasm-crypto": "7.0.3",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.5.1",
"@types/node": "18.15.11",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"assert": "2.0.0",
"buffer": "6.0.3",
"clsx": "1.2.1",
"framer-motion": "^10.16.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.9.0",
"react-router-dom": "6.10.0",
"react-scripts": "5.0.1",
"react-transition-group": "4.4.5",
"sass": "1.62.0",
"typescript": "4.9.5",
"web-vitals": "3.3.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"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": {
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"eslint": "8.16.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"react-app-rewired": "2.2.1"
},
"lint-staged": {
"./**/*.{js,css,ts,tsx}": "eslint --fix"
}
}