-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.67 KB
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
{
"name": "@audius/common",
"version": "1.5.79",
"description": "Common utilities and store for web and mobile.",
"private": true,
"author": "Audius",
"homepage": "https://github.com/AudiusProject/apps/packages/common#readme",
"license": "",
"exports": {
"./adapters": "./src/adapters/index.ts",
"./api": "./src/api/index.ts",
"./assets": "./src/assets/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/apps.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/apps/issues"
},
"dependencies": {
"@audius/fetch-nft": "0.2.8",
"@audius/fixed-decimal": "*",
"@audius/sdk": "*",
"@jup-ag/api": "6.0.48",
"@metaplex-foundation/mpl-token-metadata": "2.5.2",
"@optimizely/optimizely-sdk": "4.0.0",
"@tanstack/react-query": "5.62.7",
"@yornaath/batshit": "0.10.1",
"async-retry": "1.3.3",
"dayjs": "^1.11.19",
"formik": "2.4.6",
"fxa-common-password-list": "0.0.2",
"hashids": "2.2.1",
"immer": "9.0.1",
"lodash": "4.17.21",
"numeral": "2.0.6",
"object-hash": "2.2.0",
"proxy-memoize": "3.0.1",
"query-string": "8.1.0",
"react-redux": "8.0.5",
"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/jest": "29.5.7",
"@types/lodash": "4.14.149",
"@types/numeral": "2.0.2",
"@types/object-hash": "3.0.6",
"@types/react": "19.0.0",
"@types/react-redux": "7.1.7",
"@types/redux-saga": "0.10.5",
"eslint": "8.56.0",
"jest": "29.7.0",
"react": "19.0.0",
"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.98.0",
"@stripe/crypto": "0.0.4",
"react": "19.0.0",
"redux-saga": "1.1.3"
}
}