forked from dpim/wf-react-app
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.9 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.9 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
{
"name": "react-starter-proj",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently \"webflow extension serve\" \"npm run watch-webpack\" \"node copy-examples.mjs\" \"npm run sync-dev\"",
"build": "npm run build-webpack && node copy-examples.mjs && npm run sync-prod && webflow extension bundle",
"watch-webpack": "webpack --config webpack.config.mjs --mode development --watch",
"build-webpack": "webpack --config webpack.config.mjs --mode production",
"sync-dev": "nodemon --watch copies --exec \"node gh-sync-dev.mjs\"",
"sync-prod": "node gh-sync.mjs production"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/node": "^22.13.5",
"@types/prismjs": "^1.26.3",
"@webflow/designer-extension-typings": "^2.0.12",
"@webflow/webflow-cli": "^1.6.6",
"babel-loader": "^9.1.3",
"concurrently": "^6.3.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.0",
"nodemon": "^2.0.22",
"prettier": "^3.2.5",
"style-loader": "^3.3.4",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@fontsource/inter": "^5.0.16",
"@mui/icons-material": "^6.1.9",
"@mui/material": "^6.1.9",
"@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",
"babel-plugin-prismjs": "^2.1.0",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"prismjs": "^1.29.0",
"react-dom": "^18.2.0",
"source-map": "^0.7.4",
"typedoc": "^0.25.7"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}