-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1000 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1000 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
30
31
32
33
{
"scripts": {
"start": "webpack-dev-server --open",
"build": "webpack --mode production && cp dist/widget.js public/widget.js"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/plugin-transform-typescript": "^7.22.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.22.7",
"@babel/preset-typescript": "^7.22.5",
"@types/uuid": "^9.0.2",
"babel-loader": "^8.0.0-beta.6",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"html-loader": "^4.2.0",
"style-loader": "^3.3.3",
"svg-url-loader": "^8.0.0",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"clsx": "^1.2.1",
"core-js": "^2.6.12",
"preact": "^10.15.1",
"uuid": "^9.0.0"
}
}