UNPKG

2.9 kBJSONView Raw
1{
2 "name": "@uidu/toasts",
3 "version": "0.1.14",
4 "description": "Toasts for in app notifications, suggested with redux",
5 "main": "dist/uidu-toasts.js",
6 "module": "lib/index.js",
7 "jsnext:main": "lib/index.js",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/uidu-org/uidu-ui-kit.git"
12 },
13 "publishConfig": {
14 "access": "public"
15 },
16 "files": [
17 "dist",
18 "lib",
19 "styles"
20 ],
21 "scripts": {
22 "dev": "webpack --config webpack.development.js --progress --colors --watch",
23 "build": "npm run build:es && npm run build:umd && npm run build:css",
24 "build:umd": "webpack --config webpack.production.js",
25 "build:es": "NODE_ENV=production cross-env BABEL_ENV=es babel src --out-dir lib",
26 "prebuild:css": "node-sass --include-path ../../node_modules styles/index.scss styles/index.css",
27 "build:css": "postcss --use autoprefixer --config postcss.config.js styles/index.css -o styles/index.css",
28 "lint": "eslint src/**; exit 0",
29 "lint:watch": "esw -w src/**",
30 "prepublish": "npm run build",
31 "test": "bundlesize",
32 "storybook": "start-storybook -p 6006",
33 "build-storybook": "build-storybook",
34 "deploy-storybook": "storybook-to-ghpages",
35 "start": "webpack-dev-server --open --config webpack.development.js --progress --colors --watch"
36 },
37 "devDependencies": {
38 "@storybook/addon-actions": "^3.2.12",
39 "@storybook/addon-info": "^3.2.12",
40 "@storybook/addon-knobs": "^3.2.12",
41 "@storybook/addon-links": "^3.2.12",
42 "@storybook/addon-options": "^3.2.12",
43 "@storybook/react": "^3.2.12",
44 "@storybook/storybook-deployer": "^2.0.0",
45 "@uidu/forms": "^0.5.57",
46 "babel-cli": "^6.26.0",
47 "babel-core": "^6.26.0",
48 "babel-loader": "^7.1.2",
49 "babel-plugin-add-module-exports": "^0.2.1",
50 "babel-plugin-external-helpers": "^6.22.0",
51 "babel-plugin-lodash": "^3.2.11",
52 "babel-preset-es2015": "^6.24.1",
53 "babel-preset-react": "^6.24.1",
54 "bootstrap": "4.0.0",
55 "bundlesize": "^0.17.0",
56 "clean-webpack-plugin": "^0.1.16",
57 "cross-env": "^5.0.5",
58 "css-loader": "^0.28.7",
59 "eventsource-polyfill": "^0.9.6",
60 "extract-text-webpack-plugin": "^3.0.0",
61 "lodash": "^4.17.4",
62 "lodash-es": "^4.17.4",
63 "lodash-webpack-plugin": "^0.11.4",
64 "node-sass": "^4.5.3",
65 "postcss-cli": "^5.0.0",
66 "prettier": "^1.8.2",
67 "prop-types": "^15.6.0",
68 "react": "^15.6.1 || 16.2.0",
69 "react-dom": "^15.6.1 || ^16.2.0",
70 "sass-loader": "^6.0.6",
71 "style-loader": "^0.20.0",
72 "webpack": "^3.6.0",
73 "webpack-bundle-analyzer": "^2.9.0",
74 "webpack-dev-server": "^2.9.1",
75 "webpack-merge": "^4.1.0"
76 },
77 "dependencies": {
78 "react-notification": "^6.8.2",
79 "react-redux": "^5.0.6",
80 "react-router": "^4.2.0",
81 "redux-logger": "^3.0.6",
82 "redux-thunk": "^2.2.0",
83 "shortid": "^2.2.8"
84 }
85}