forked from solana-labs/governance-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.36 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
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "with-typescript-eslint-jest",
"author": "@erikdstock",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"analyze": "ANALYZE=true next build",
"tc": "yarn type-check --watch",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js --ext jsx",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test",
"notifier": "ts-node scripts/governance-notifier.ts"
},
"lint-staged": {
"*.@(ts|tsx|js|jsx)": [
"yarn format"
]
},
"dependencies": {
"@blockworks-foundation/mango-client": "^3.4.3",
"@blockworks-foundation/voter-stake-registry-client": "^0.2.0",
"@cardinal/namespaces-components": "^2.5.5",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@friktion-labs/friktion-sdk": "^1.1.25",
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.1",
"@marinade.finance/marinade-ts-sdk": "^2.0.9",
"@metaplex-foundation/mpl-token-metadata": "^1.2.5",
"@next/bundle-analyzer": "^12.1.5",
"@nfteyez/sol-rayz": "^0.10.2",
"@nivo/bar": "^0.79.1",
"@nivo/core": "^0.79.0",
"@notifi-network/notifi-react-hooks": "^0.12.1",
"@project-serum/anchor": "^0.23.0",
"@project-serum/common": "^0.0.1-beta.3",
"@project-serum/sol-wallet-adapter": "^0.2.6",
"@solana/governance-program-library": "^0.15.1",
"@solana/spl-governance": "^0.0.34",
"@solana/spl-token": "0.1.8",
"@solana/spl-token-registry": "^0.2.3470",
"@solana/wallet-adapter-base": "^0.9.5",
"@solana/wallet-adapter-phantom": "^0.9.3",
"@solana/wallet-adapter-solflare": "^0.6.6",
"@solana/wallet-adapter-sollet": "^0.11.1",
"@solana/web3.js": "^1.37.1",
"@solendprotocol/solend-sdk": "^0.5.5",
"@tippyjs/react": "^4.2.6",
"axios": "^0.26.1",
"bignumber.js": "^9.0.2",
"buffer-layout": "^1.2.2",
"classnames": "^2.3.1",
"dayjs": "^1.10.7",
"immer": "^9.0.12",
"next": "^12.1.4",
"next-themes": "^0.1.1",
"next-transpile-modules": "^8.0.0",
"node-fetch": "^2.6.1",
"rc-slider": "^9.7.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-headless-pagination": "^0.1.0",
"react-markdown": "^7.0.0",
"react-portal": "^4.2.2",
"remark-gfm": "^3.0.1",
"superstruct": "^0.15.4",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"yup": "^0.32.11",
"zustand": "^3.7.2"
},
"devDependencies": {
"@notifi-network/notifi-core": "^0.12.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^11.2.5",
"@types/jest": "^27.4.1",
"@types/node": "^14.14.25",
"@types/react": "^17.0.44",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^6.0.0",
"jest": "^27.4.5",
"lint-staged": "^10.0.10",
"next-router-mock": "^0.6.7",
"postcss": "^8.2.12",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.2",
"tailwindcss": "^3.0.23",
"twin.macro": "^2.4.0",
"typescript": "^4.6.3"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
}
}