-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathpackage.json
132 lines (132 loc) · 6.37 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "root",
"version": "1.5.123",
"workspaces": [
"packages/*",
"packages/discovery-provider/plugins/pedalboard/apps/*",
"packages/discovery-provider/plugins/pedalboard/packages/*"
],
"private": true,
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"check-secrets": "sh ./scripts/check-secrets.sh",
"clean:modules": "rm -rf node_modules && rm -rf packages/*/node_modules",
"clean:dist": "rm -rf packages/*/dist",
"install-git-secrets": "sh ./scripts/install-git-secrets.sh",
"install-hooks": "mookme init --only-hook --skip-types-selection",
"lint:fix": "turbo run lint:fix",
"lint": "turbo run lint",
"patch-package": "bash ./scripts/patch-package.sh",
"postinstall": "bash ./scripts/postinstall.sh",
"preinstall": "bash ./scripts/preinstall.sh",
"turbo-link": "turbo login && turbo link",
"validate-ci-config": "circleci config pack .circleci/src > .circleci/continue_config.yml && circleci config validate .circleci/continue_config.yml",
"verify": "turbo run verify",
"CORE=======================================": "",
"buf:generate": "buf generate buf.build/audiusd/protocol:main --include-imports && npm run buf:generate:postinstall",
"buf:generate:postinstall": "cd packages/discovery-provider/src/tasks/core && ./fix-proto-imports.sh",
"WEB========================================": "",
"web:dev": "npm run start:dev -w @audius/web",
"web:prod": "npm run start:prod -w @audius/web",
"web:stage": "npm run start:stage -w @audius/web",
"web:e2e": "npm run e2e -w @audius/web",
"web:test": "turbo run test --filter=@audius/web",
"DESKTOP====================================": "",
"desktop:dev": "concurrently -k 'BROWSER=none npm run start:dev -w @audius/web' 'wait-on http://0.0.0.0:3000 && npm run electron:localhost -w @audius/web -- 3000'",
"desktop:prod": "concurrently -k 'BROWSER=none npm run start:prod -w @audius/web' 'wait-on http://0.0.0.0:3002 && npm run electron:localhost -w @audius/web -- 3002'",
"desktop:stage": "concurrently -k 'BROWSER=none npm run start:stage -w @audius/web' 'wait-on http://0.0.0.0:3001 && npm run electron:localhost -w @audius/web -- 3001'",
"MOBILE=====================================": "",
"android:dev": "npm run android:dev -w @audius/mobile",
"android:prod": "npm run android:prod -w @audius/mobile",
"android:stage": "npm run android:stage -w @audius/mobile",
"ios:dev": "npm run ios:dev -w @audius/mobile",
"ios:prod": "npm run ios:prod -w @audius/mobile",
"ios:stage": "npm run ios:stage -w @audius/mobile",
"mobile": "npm run start -w @audius/mobile",
"mobile:clean": "npm run clean:auto -w @audius/mobile && npm run clean:modules",
"mobile:clear-cache": "watchman watch-del-all && npm run start -w @audius/mobile -- --reset-cache",
"EMBED======================================": "",
"embed:prod": "npm run start:prod -w embed",
"embed:stage": "npm run start:stage -w embed",
"embed:dev": "npm run start:dev -w embed",
"HARMONY====================================": "",
"harmony": "turbo run start --filter=@audius/harmony",
"harmony:dev": "npm run storybook -w @audius/harmony",
"SDK======================================": "",
"sdk": "turbo run start --filter=@audius/sdk",
"sdk:browser:es": "npm run start:sdk:browser:es -w @audius/sdk",
"PROTOCOL======================================": "",
"protocol": "turbo run start --filter=@audius/compose --",
"PROTOCOL DASHBOARD==============================": "",
"dashboard:dev": "npm run start:dev -w @audius/protocol-dashboard",
"dashboard:stage": "npm run start:stage -w @audius/protocol-dashboard",
"dashboard:prod": "npm run start:prod -w @audius/protocol-dashboard",
"PEDALBOARD======================================": "",
"pedalboard:build": "turbo run build --filter='./packages/discovery-provider/plugins/pedalboard/apps/*' --filter='./packages/discovery-provider/plugins/pedalboard/packages/*'",
"pedalboard:clean": "turbo run clean --filter='./packages/discovery-provider/plugins/pedalboard/apps/*' --filter='./packages/discovery-provider/plugins/pedalboard/packages/*'",
"pedalboard:dev": "turbo run dev --concurrency 12 --filter='./packages/discovery-provider/plugins/pedalboard/apps/*' --filter='./packages/discovery-provider/plugins/pedalboard/packages/*'",
"pedalboard:test": "turbo run test --filter='./packages/discovery-provider/plugins/pedalboard/apps/*' --filter='./packages/discovery-provider/plugins/pedalboard/packages/*'"
},
"devDependencies": {
"@emotion/eslint-plugin": "11.11.0",
"@tsconfig/strictest": "2.0.2",
"@types/keyv": "4.2.0",
"@types/react": "18.3.1",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"concurrently": "7.4.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-prettier-standard": "4.0.1",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.1.1",
"eslint-plugin-mdx": "2.2.0",
"eslint-plugin-n": "15.3.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "6.1.0",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-standard": "4.1.0",
"npm-check-updates": "16.4.1",
"patch-package": "6.5.1",
"prettier": "3.4.2",
"prettier-config-standard": "7.0.0",
"standard": "17.0.0",
"turbo": "1.10.14",
"typescript": "5.0.4",
"vike": "^0.4.150",
"wait-on": "7.2.0"
},
"dependencies": {
"@audius/hedgehog": "3.0.0-alpha.1",
"@babel/core": "7.23.7",
"@changesets/cli": "2.27.1",
"@escape.tech/mookme": "2.4.1",
"@redux-devtools/remote": "0.8.0",
"@types/express": "^4.17.21",
"@web3modal/ethers": "4.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"pg": "8.8.0",
"pino": "^9.1.0",
"react-native-google-cast": "4.6.2",
"elliptic": "6.6.1"
},
"overrides": {
"@types/prop-types": "15.7.5",
"@types/react": "18.3.1",
"@types/bn.js": "5.1.0",
"bn.js": "5.1.0",
"moment": "2.24.0",
"react-native-svg": "15.10.1",
"redux": "4.1.1",
"webpack": "5.88.2",
"elliptic": "6.6.1"
},
"packageManager": "npm@9.6.7"
}