-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
45
46
47
48
49
50
51
52
53
{
"name": "@currietechnologies/razorsweetalert2",
"version": "5.6.0",
"description": "A Razor class library for interacting with SweetAlert2",
"type": "module",
"scripts": {
"build": "SET NODE_ENV=production && webpack --color --mode=production",
"build:tsc": "tsc",
"watch": "webpack --watch",
"lint": "eslint ./src --ext .ts",
"prettier:write": "prettier --write ./src/ts/*.ts",
"prettier:check": "prettier --check ./src/ts/*.ts",
"babel": "babel ./src/ts/SweetAlert.ts --out-dir wwwroot --extensions .ts,.tsx"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/blazor__javascript-interop": "^3.1.7",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^2.8.8",
"sass": "^1.83.1",
"sass-loader": "^16.0.4",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@sweetalert2/themes": "^5.0.15",
"core-js": "3.40.0",
"sweetalert2": "11.7.3"
},
"author": "Michael J. Currie",
"private": true,
"browserslist": [
"last 2 edge versions",
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 safari versions",
"last 2 opera versions",
"last 2 and_uc versions"
]
}