-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.18 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
{
"name": "embed",
"version": "1.5.76",
"private": true,
"scripts": {
"start": "vite",
"start:dev": "env-cmd -f .env.dev turbo run start",
"start:prod": "env-cmd -f .env.prod turbo run start",
"build": "vite build",
"build:prod": "env-cmd -f .env.prod turbo run build && npm run build-api && mv build build-production",
"build-api": "webpack --config src/api/webpack.config.js -o build/api.js",
"deploy:prod": "npx wrangler publish --env production",
"test": "jest",
"lint:fix": "eslint --cache --fix --ext=js,jsx,ts,tsx src",
"lint": "eslint --cache --ext=js,jsx,ts,tsx src",
"lint:env": "dotenv-linter",
"verify": "concurrently \"npm:lint\" \"npm:lint:env\""
},
"devDependencies": {
"@audius/dotenv-linter": "*",
"@cloudflare/kv-asset-handler": "^0.3.0",
"wrangler": "3.30.1",
"@vitejs/plugin-react": "5.1.1",
"env-cmd": "10.1.0",
"esbuild-plugin-react-virtualized": "^1.0.4",
"eslint": "8.56.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.4.2",
"per-env": "1.0.2",
"serve": "11.1.0",
"vite": "7.2.4",
"vite-plugin-glslify": "2.0.2",
"vite-plugin-node-polyfills": "0.17.0",
"vite-plugin-svgr": "4.1.0",
"vite-tsconfig-paths": "4.2.1",
"webpack": "5.95.0",
"webpack-cli": "4.5.0"
},
"dependencies": {
"@audius/fetch-nft": "0.2.8",
"@audius/fixed-decimal": "*",
"@audius/harmony": "*",
"@audius/sdk": "*",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@google/model-viewer": "3.3.0",
"@radix-ui/react-slot": "1.0.2",
"@react-spring/web": "10.0.3",
"amplitude-js": "8.11.1",
"axios": "0.19.2",
"classnames": "2.2.6",
"copy-to-clipboard": "3.2.1",
"hashids": "2.2.10",
"hls.js": "0.13.1",
"lodash": "4.17.21",
"node-polyfill-webpack-plugin": "2.0.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-helmet": "6.1.0",
"react-merge-refs": "2.1.1",
"react-perfect-scrollbar": "1.5.8",
"react-router": "^7.11.0",
"react-transition-group": "4.4.5",
"react-use": "17.4.0",
"react-use-measure": "2.1.1",
"simplebar-react": "2.1.0",
"web3": "1.8.2",
"web3-utils": "1.3.4"
}
}