-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
103 lines (103 loc) · 3.03 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
{
"name": "@audius/common",
"version": "1.5.76",
"description": "Common utilities and store for web and mobile.",
"private": true,
"author": "Audius",
"homepage": "https://github.com/AudiusProject/audius-protocol/packages/common#readme",
"license": "",
"exports": {
"./adapters": "./src/adapters/index.ts",
"./api": "./src/api/index.ts",
"./assets": "./src/assets/index.ts",
"./audius-query": "./src/audius-query/index.ts",
"./context": "./src/context/index.ts",
"./hooks": "./src/hooks/index.ts",
"./messages": "./src/messages/index.ts",
"./models": "./src/models/index.ts",
"./schemas": "./src/schemas/index.ts",
"./services": "./src/services/index.ts",
"./store": "./src/store/index.ts",
"./serverStore": "./src/serverStore/index.ts",
"./utils": "./src/utils/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AudiusProject/audius-protocol.git"
},
"scripts": {
"lint": "eslint --cache src",
"lint:fix": "npm run lint -- --fix",
"test": "vitest",
"typecheck": "tsc --noEmit",
"verify": "concurrently \"npm:lint\""
},
"bugs": {
"url": "https://github.com/AudiusProject/audius-protocol/issues"
},
"dependencies": {
"@audius/fetch-nft": "0.2.7",
"@audius/fixed-decimal": "*",
"@audius/sdk": "*",
"@audius/sdk-legacy": "*",
"@audius/trpc-server": "*",
"@fingerprintjs/fingerprintjs-pro": "3.5.6",
"@jup-ag/api": "6.0.6",
"@metaplex-foundation/mpl-token-metadata": "2.5.2",
"@optimizely/optimizely-sdk": "4.0.0",
"@tanstack/react-query": "4.35.7",
"@trpc/client": "10.38.4",
"@trpc/react-query": "10.38.4",
"@types/object-hash": "3.0.6",
"async-retry": "1.3.3",
"bn.js": "5.1.0",
"dayjs": "1.10.7",
"deep-object-diff": "1.1.9",
"formik": "2.4.6",
"fxa-common-password-list": "0.0.2",
"hashids": "2.2.1",
"immer": "9.0.1",
"lodash": "4.17.21",
"normalizr": "^3.6.2",
"numeral": "2.0.6",
"object-hash": "2.2.0",
"proxy-memoize": "1.2.0",
"query-string": "8.1.0",
"react-redux": "8.0.5",
"react-router": "5.3.4",
"react-use": "17.4.0",
"redux": "4.0.5",
"redux-persist": "6.0.0",
"reselect": "4.0.0",
"type-fest": "4.26.1",
"typed-redux-saga": "1.3.1",
"typesafe-actions": "5.1.0",
"ulid": "2.3.0",
"zod": "3.21.4",
"zod-formik-adapter": "1.2.0"
},
"devDependencies": {
"@reduxjs/toolkit": "1.6.1",
"@stripe/crypto": "0.0.4",
"@types/bn.js": "5.1.0",
"@types/jest": "29.5.7",
"@types/lodash": "4.14.149",
"@types/numeral": "^2.0.2",
"@types/react": "18.3.1",
"@types/react-redux": "7.1.7",
"@types/redux-saga": "0.10.5",
"eslint": "8.56.0",
"jest": "29.7.0",
"react": "18.3.1",
"ts-patch": "3.1.1",
"typescript-transform-paths": "3.4.4"
},
"peerDependencies": {
"@reduxjs/toolkit": "1.6.1",
"@solana/spl-token": "0.3.8",
"@solana/web3.js": "1.93.4",
"@stripe/crypto": "0.0.4",
"react": "^18.3.1",
"redux-saga": "1.1.3"
}
}