-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.79 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
{
"name": "@rulesorg/kass-interface",
"version": "0.1.0",
"repository": "[email protected]:ruleslabs/kass-interface.git",
"author": "chqrles",
"license": "MIT",
"scripts": {
"graphql:fetch": "node scripts/fetch-schema.js",
"graphql:generate": "graphql-codegen --config apollo-codegen.ts",
"graphql": "yarn graphql:fetch && yarn graphql:generate",
"prepare": "yarn graphql:fetch && yarn graphql:generate",
"start": "craco start",
"build": "craco build"
},
"dependencies": {
"@apollo/client": "^3.7.14",
"@coinbase/wallet-sdk": "^3.6.6",
"@rulesorg/sdk-core": "^1.4.26",
"@starknet-react/core": "^0.14.8",
"@types/react-dom": "^18.2.1",
"@vanilla-extract/css": "^1.11.0",
"@vanilla-extract/recipes": "^0.4.0",
"@vanilla-extract/sprinkles": "^1.6.0",
"@web3-react/coinbase-wallet": "^8.2.0",
"@web3-react/core": "^8.2.0",
"@web3-react/metamask": "^8.2.1",
"@web3-react/network": "^8.2.0",
"@web3-react/types": "^8.2.0",
"@web3-react/walletconnect": "^8.2.0",
"alchemy-sdk": "2.9.1",
"clsx": "^1.2.1",
"ethers": "6.6.2",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"ms.macro": "^2.0.0",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-router-dom": "^6.11.0",
"starknet": "^5.10.0",
"ua-parser-js": "^1.0.35",
"url-join": "^5.0.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@types/ms.macro": "^2.0.0",
"@types/react": "^18.2.0",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vanilla-extract/babel-plugin": "^1.2.0",
"@vanilla-extract/webpack-plugin": "^2.2.0",
"css-loader": "^6.7.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-webpack-plugin": "^4.0.1",
"get-graphql-schema": "^2.1.2",
"mini-css-extract-plugin": "^2.7.5",
"node-polyfill-webpack-plugin": "^2.0.1",
"prettier": "^2.4.1",
"react-scripts": "^5.0.1",
"typescript": "^5.0.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}