-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "metaeditor-nextjs",
"version": "4.3.10",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn build:icons && next build",
"start": "next start",
"lint": "next lint",
"post-update": "echo \"codesandbox preview only, need an update\" && yarn upgrade --latest",
"symlink": "npm link ../metaeditor_src/pixel-streaming",
"build:icons": "tsc -b src/iconify-bundle && node src/iconify-bundle/bundle-icons-react.js",
"build:vercel": "next build",
"deploy": "git add . && git commit -m 'deploy' && git push"
},
"dependencies": {
"@emotion/cache": "11.14.0",
"@emotion/react": "11.14.0",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.14.0",
"@mui/icons-material": "6.3.1",
"@mui/material": "6.3.1",
"@next/font": "14.2.15",
"next": "15.1.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rsuite": "^5.28.1",
"pixel-streaming": "4.3.13",
"react-full-screen": "^1.1.1"
},
"devDependencies": {
"@types/node": "22.10.5",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"eslint": "9.17.0",
"eslint-config-next": "15.1.3",
"typescript": "5.7.2"
},
"workspaces": {
"packages": [
"src/@core/**",
"src/@core/components/**/**"
],
"nohoist": []
}
}