web: Common: Sorted package.json

This commit is contained in:
Alexey Safronov 2019-11-26 14:58:01 +03:00
parent 0eb67806da
commit f9d42a39c2

View File

@ -3,46 +3,34 @@
"version": "1.0.1", "version": "1.0.1",
"description": "Ascensio System SIA common components and solutions library", "description": "Ascensio System SIA common components and solutions library",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"main": "dist/asc-web-common.js",
"module": "dist/asc-web-common.esm.js",
"jsnext:main": "dist/asc-web-common.es.js",
"files": [ "files": [
"dist", "dist",
"README.md", "README.md",
"LICENSE", "LICENSE",
"package.json" "package.json"
], ],
"engines": { "main": "dist/asc-web-common.js",
"node": ">=8", "module": "dist/asc-web-common.esm.js",
"npm": ">=5" "jsnext:main": "dist/asc-web-common.es.js",
},
"scripts": { "scripts": {
"build": "rimraf dist && cross-env NODE_ENV=production rollup -c", "build": "rimraf dist && cross-env NODE_ENV=production rollup -c",
"start": "cross-env NODE_ENV=development rollup -c -w",
"prepare": "yarn run build",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"storybook": "start-storybook -p 6007 -s ./public",
"build:storybook": "build-storybook -c .storybook -o storybook-static -s public", "build:storybook": "build-storybook -c .storybook -o storybook-static -s public",
"bump": "yarn version --no-git-tag-version --patch && git add ./package.json && git commit -m \"web: common: bump version\"" "bump": "yarn version --no-git-tag-version --patch && git add ./package.json && git commit -m \"web: common: bump version\"",
"lint": "eslint .",
"prepare": "yarn run build",
"start": "cross-env NODE_ENV=development rollup -c -w",
"storybook": "start-storybook -p 6007 -s ./public",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
}, },
"peerDependencies": { "dependencies": {
"asc-web-components": "file:../../packages/asc-web-components", "axios": "^0.19.0",
"i18next": "17.0.12", "history": "4.9.0",
"prop-types": "^15.7.2", "lodash": "4.17.15",
"react": "^16.9.0", "lodash-es": "4.17.15",
"react-dom": "^16.9.0", "moment": "^2.24.0",
"react-i18next": "10.12.2", "universal-cookie": "^4.0.2"
"react-redux": "7.1.1",
"react-router": "5.0.1",
"react-router-dom": "5.0.1",
"react-values": "^0.3.3",
"bootstrap": "^4.3.1",
"reactstrap": "8.0.1",
"styled-components": "^4.3.2"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.5.5", "@babel/cli": "^7.5.5",
@ -75,6 +63,7 @@
"babel-plugin-inline-react-svg": "^1.1.0", "babel-plugin-inline-react-svg": "^1.1.0",
"babel-plugin-transform-dynamic-import": "^2.1.0", "babel-plugin-transform-dynamic-import": "^2.1.0",
"babel-plugin-transform-rename-import": "^2.3.0", "babel-plugin-transform-rename-import": "^2.3.0",
"bootstrap": "^4.3.1",
"cross-env": "^5.2.0", "cross-env": "^5.2.0",
"css-loader": "^3.2.0", "css-loader": "^3.2.0",
"enzyme": "^3.10.0", "enzyme": "^3.10.0",
@ -94,8 +83,6 @@
"react-router": "5.0.1", "react-router": "5.0.1",
"react-router-dom": "5.0.1", "react-router-dom": "5.0.1",
"react-values": "^0.3.3", "react-values": "^0.3.3",
"bootstrap": "^4.3.1",
"reactstrap": "8.0.1", "reactstrap": "8.0.1",
"rollup": "^1.21.1", "rollup": "^1.21.1",
"rollup-plugin-babel": "^4.3.3", "rollup-plugin-babel": "^4.3.3",
@ -113,15 +100,26 @@
"styled-components": "^4.3.2", "styled-components": "^4.3.2",
"svg-inline-loader": "^0.8.0" "svg-inline-loader": "^0.8.0"
}, },
"dependencies": { "peerDependencies": {
"axios": "^0.19.0", "asc-web-components": "file:../../packages/asc-web-components",
"history": "4.9.0", "bootstrap": "^4.3.1",
"lodash": "4.17.15", "i18next": "17.0.12",
"lodash-es": "4.17.15", "prop-types": "^15.7.2",
"moment": "^2.24.0", "react": "^16.9.0",
"universal-cookie": "^4.0.2" "react-dom": "^16.9.0",
"react-i18next": "10.12.2",
"react-redux": "7.1.1",
"react-router": "5.0.1",
"react-router-dom": "5.0.1",
"react-values": "^0.3.3",
"reactstrap": "8.0.1",
"styled-components": "^4.3.2"
}, },
"resolutions": { "resolutions": {
"js-yaml": "3.13.1" "js-yaml": "3.13.1"
},
"engines": {
"node": ">=8",
"npm": ">=5"
} }
} }