-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.73 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
{
"name": "societal-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "rm -rf .next && NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-assets": "node scripts/generateIcons.mjs",
"prebuild": "npm run generate-assets",
"stylelint": "stylelint --quiet --fix \"**/*.(scss|sass)\"",
"test": "jest --silent",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@apollo/client": "^3.7.9",
"@next/font": "^13.0.6",
"@polkadot/api": "^9.10.2",
"@polkadot/extension-dapp": "^0.44.6",
"@polkadot/keyring": "^10.2.1",
"@polkadot/networks": "^10.2.1",
"@polkadot/types": "^9.10.2",
"@polkadot/ui-keyring": "^2.9.14",
"@polkadot/ui-settings": "^2.9.14",
"@polkadot/util": "^10.2.1",
"@polkadot/util-crypto": "^10.2.1",
"@popperjs/core": "^2.11.6",
"@radix-ui/react-checkbox": "^1.0.1",
"@radix-ui/react-collapsible": "^1.0.2",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-dropdown-menu": "^2.0.2",
"@radix-ui/react-label": "^2.0.0",
"@radix-ui/react-radio-group": "^1.1.1",
"@radix-ui/react-select": "^1.2.0",
"@radix-ui/react-switch": "^1.0.1",
"@radix-ui/react-tabs": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.5",
"@types/node": "18.11.10",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"aws-sdk": "2.1345.0",
"clsx": "^1.2.1",
"date-fns": "2.29.3",
"eslint": "8.28.0",
"eslint-config-next": "13.0.6",
"ethers": "^5.7.2",
"extract-domain": "2.4.8",
"form-data": "4.0.0",
"graphql": "^16.6.0",
"graphql-ws": "^5.11.3",
"jotai": "^1.11.2",
"lottie-react": "^2.4.0",
"next": "13.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-popper": "^2.3.0",
"react-toastify": "^9.1.1",
"react-transition-group": "^4.4.5",
"typescript": "4.9.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.0.6",
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/extract-domain": "^2.3.1",
"@types/jest": "^26.0.24",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"babel-jest": "^27.0.6",
"camelcase": "^7.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.0.6",
"sass": "^1.56.1",
"stylelint": "^14.16.0",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
"svg-sprite-loader": "^6.0.11"
}
}