-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 914 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 914 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
{
"name": "sweetalert2-webpack-demo",
"version": "1.0.0",
"repository": "https://github.com/sweetalert2/sweetalert2-webpack.git",
"description": "Demo of using SweetAlert2 with webpack",
"author": "Limon Monte (https://limonte.github.io)",
"contributors": [
"Jon Crenshaw <jdcrensh@gmail.com> (https://www.linkedin.com/in/jdcrensh)"
],
"license": "MIT",
"devDependencies": {
"@types/react": "^19.2.0",
"css-loader": "^7.0.0",
"sass": "^1.83.0",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.3.1",
"typescript": "~5.9.3",
"webpack": "^5.102.0",
"webpack-cli": "^6.0.0"
},
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sweetalert2": "^11.5.2",
"sweetalert2-react-content": "^5.0.3"
},
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --watch --mode=development"
}
}