forked from solana-labs/governance-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.62 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
{
"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",
"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.2.2",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"@headlessui/react": "^1.0.0",
"@heroicons/react": "^1.0.1",
"@project-serum/anchor": "^0.10.0",
"@project-serum/borsh": "^0.2.2",
"@project-serum/common": "^0.0.1-beta.3",
"@project-serum/sol-wallet-adapter": "^0.2.0",
"@solana/spl-token": "^0.1.3",
"@solana/wallet-adapter-base": "^0.7.1",
"@solana/wallet-adapter-phantom": "^0.7.0",
"@solana/wallet-adapter-sollet": "^0.8.0",
"@solana/web3.js": "^1.30.2",
"@tippyjs/react": "^4.2.5",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"immer": "^9.0.1",
"moment": "^2.29.1",
"next": "^12.0.4",
"next-themes": "^0.0.14",
"next-transpile-modules": "^8.0.0",
"node-fetch": "^2.6.1",
"rc-slider": "^9.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-markdown": "^7.0.0",
"react-portal": "^4.2.1",
"react-virtualized": "^9.22.3",
"superstruct": "^0.15.3",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"yup": "^0.32.11",
"zustand": "^3.4.1"
},
"devDependencies": {
"@emotion/babel-preset-css-prop": "^11.2.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^11.2.5",
"@types/jest": "^27.0.3",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.5",
"lint-staged": "^10.0.10",
"next-router-mock": "^0.6.3",
"postcss": "^8.2.12",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.2",
"tailwindcss": "^2.1.2",
"twin.macro": "^2.4.0",
"typescript": "^4.1.3"
},
"babelMacros": {
"twin": {
"preset": "emotion"
}
}
}