-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "react-bootstrap-sweetalert",
"version": "5.2.0",
"description": "A variant of sweetalert for use with React and Bootstrap",
"main": "dist/index.js",
"scripts": {
"preversion": "yarn build",
"postversion": "git push && git push --tags && npm publish",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"build": "yarn lint && rm -rf ./dist && tsc --declaration && yarn inject-css",
"build-demo": "cd ./src/demo && NODE_ENV=development webpack",
"start-demo": "NODE_ENV=development node ./demo/demo-server.js",
"demo": "yarn build-demo && yarn start-demo && yarn open",
"inject-css": "gulp copy-css && gulp inject-css",
"open": "open http://localhost:3000"
},
"files": [
"dist",
"!dist/demo"
],
"repository": {
"type": "git",
"url": "git+https://[email protected]/djorg83/react-bootstrap-sweetalert.git"
},
"keywords": [
"react",
"bootstrap",
"alert",
"sweetalert",
"confirm",
"modal"
],
"author": "Daniel Jorgensen",
"license": "MIT",
"bugs": {
"url": "https://github.com/djorg83/react-bootstrap-sweetalert/issues"
},
"homepage": "http://djorg83.github.io/react-bootstrap-sweetalert/",
"peerDependencies": {
"prop-types": ">=15.0.0",
"react": ">=16.0.0"
},
"resolutions": {
"@types/react": "16.9.43"
},
"devDependencies": {
"@types/node": "^12.7.1",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"css-loader": "^3.2.0",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-inject-file": "0.0.19",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-tools": "^0.13.3",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"typescript": "^3.9.7",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
}
}