forked from dpim/wf-react-app
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.64 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.64 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
{
"name": "react-starter-proj",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"vite:dev": "vite --port 1337",
"dev": "vite build && concurrently \"webflow extension serve\" \"vite\"",
"build": "vite build && webflow extension bundle",
"sync-dev": "nodemon --watch github/copies --exec \"node github/gh-sync-dev.mjs\"",
"sync-prod": "node github/gh-sync.mjs production",
"preview": "vite preview",
"clean": "rm -rf dist node_modules && npm install",
"postinstall": "node scripts/sync-typings.js"
},
"devDependencies": {
"@types/node": "^22.13.5",
"@types/prismjs": "^1.26.3",
"@vitejs/plugin-react": "^4.0.0",
"@webflow/designer-extension-typings": "^2.0.25",
"@webflow/webflow-cli": "^1.8.6",
"@xatom/wf-app-hot-reload": "^1.0.5",
"concurrently": "^6.3.0",
"nodemon": "^2.0.22",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^5.0.0"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@fontsource/inter": "^5.0.16",
"@monaco-editor/react": "^4.7.0",
"@mui/icons-material": "^6.1.9",
"@mui/material": "^6.1.9",
"@tanstack/react-query": "^5.81.2",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"acorn": "^8.12.1",
"acorn-jsx": "^5.3.2",
"acorn-typescript": "^1.4.13",
"acorn-walk": "^8.3.4",
"axios": "^1.6.2",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resizable": "^3.0.5",
"source-map": "^0.7.4",
"sucrase": "^3.35.0",
"typedoc": "^0.25.12"
}
}