-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
80 lines (80 loc) · 2.32 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "sweetalert2-react-content",
"version": "5.0.7",
"description": "Official sweetalert2 enhancer adding support for React elements as content.",
"main": "dist/sweetalert2-react-content.cjs.js",
"module": "dist/sweetalert2-react-content.es.js",
"browser": "dist/sweetalert2-react-content.umd.js",
"types": "src/sweetalert2-react-content.d.ts",
"files": [
"dist/**/*",
"src/**/*.{js,d.ts}"
],
"scripts": {
"dev": "vite",
"cypress:open": "cypress open",
"check-dts": "tsc src/sweetalert2-react-content.d.ts --lib dom,es6",
"lint": "eslint . && prettier . --check",
"lint-fix": "eslint . --fix && prettier . --write",
"test": "cypress run --headless",
"build": "rollup --config --bundleConfigAsCjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sweetalert2/sweetalert2-react-content.git"
},
"keywords": [
"sweetalert",
"sweetalert2",
"react",
"content"
],
"author": {
"name": "Matthew Francis Brunetti",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sweetalert2/sweetalert2-react-content/issues"
},
"homepage": "https://github.com/sweetalert2/sweetalert2-react-content#readme",
"dependencies": {},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sweetalert2": "^11.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.19.4",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^6.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@sweetalert2/eslint-config": "^1.1.3",
"@types/react": "^18.0.20",
"@vitejs/plugin-react": "^4.0.0",
"babel-core": "^7.0.0-bridge.0",
"cypress": "^13.0.0",
"eslint": "^8.25.0",
"eslint-plugin-react": "^7.31.10",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.0.0",
"sweetalert2": "^11.6.0",
"typescript": "^5.0.0",
"vite": "^5.0.0"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5"
}
}