-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 818 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 818 Bytes
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
{
"name": "react-starter-proj",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently \"webflow extension serve\" \"npm run watch-webpack\"",
"build": "npm run build-webpack && webflow extension bundle",
"watch-webpack": "webpack --config webpack.config.js --mode development --watch",
"build-webpack": "webpack --config webpack.config.js --mode production"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@webflow/designer-extension-typings": "*",
"babel-loader": "^9.1.3",
"concurrently": "^6.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"react-dom": "^18.2.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}