-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.51 KB
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": "reactstrap-confirm",
"version": "1.3.2",
"description": "Promise based confirm for reactstrap",
"main": "dist/index.js",
"repository": "git@github.com:algm/reactstrap-confirm.git",
"author": "Antonio Gázquez <algm85@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-async-to-generator": "^7.14.5",
"@babel/plugin-transform-regenerator": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.3.4",
"@storybook/addons": "^6.3.4",
"@storybook/builder-webpack5": "^6.3.4",
"@storybook/manager-webpack5": "^6.3.4",
"@storybook/react": "^6.3.4",
"@storybook/storybook-deployer": "^2.8.10",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"bootstrap": "^5.0.2",
"core-js": "^3.15.2",
"css-loader": "^5.2.6",
"eslint": "^7.30.0",
"eslint-plugin-react": "^7.24.0",
"gh-pages": "^3.2.3",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"jsdom": "^16.6.0",
"node-notifier": "^10.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reactstrap": "^8.9.0",
"regenerator-runtime": "^0.13.7",
"sinon": "^11.1.1",
"style-loader": "^3.0.0",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev": "^1.1.1",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"test": "node_modules/.bin/jest ",
"tdd": "node_modules/.bin/jest --watch --notify ",
"start": "npx webpack serve --mode=development",
"build": "babel src -d dist --copy-files",
"prepublishOnly": "npm run build",
"buildExample": "npm run build-storybook",
"deploy": "storybook-to-ghpages",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": "^17.0",
"react-dom": "^17.0",
"reactstrap": "^8.9"
},
"dependencies": {
"lodash.defaults": "^4.2.0"
},
"storybook-deployer": {
"gitUsername": "algm",
"gitEmail": "algm85@gmail.com",
"commitMessage": "Deploy Storybook [skip ci]"
}
}