-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 KB
/
package.json
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
{
"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": {
"@babel/core": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/runtime": "^7.19.4",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.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.7.0",
"webpack": "^5.76.0",
"webpack-cli": "^6.0.0"
},
"dependencies": {
"@sweetalert2/theme-dark": "^5.0.12",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sweetalert2": "^11.5.2",
"sweetalert2-react-content": "^5.0.3"
},
"scripts": {
"build": "webpack --mode=production",
"start": "webpack --watch --mode=development"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5"
}
}