1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-07-05 20:53:12 +00:00
foris-js/package.json

78 lines
2.2 KiB
JSON
Raw Normal View History

2019-08-21 15:04:26 +00:00
{
"name": "foris",
2020-01-09 10:25:29 +00:00
"version": "3.1.0",
2019-08-23 13:20:22 +00:00
"description": "Set of components and utils for Foris and its plugins.",
2019-08-21 15:04:26 +00:00
"author": "CZ.NIC, z.s.p.o.",
"repository": {
"type": "git",
2019-12-09 10:51:50 +00:00
"url": "https://gitlab.labs.nic.cz/turris/reforis/foris-js.git"
2019-08-21 15:04:26 +00:00
},
"keywords": [
"foris",
"reforis"
],
"license": "GPL-3.0",
2020-01-08 08:38:02 +00:00
"main": "./src/index.js",
2019-08-21 15:04:26 +00:00
"dependencies": {
"axios": "^0.19.0",
2019-09-26 11:09:37 +00:00
"jest-transform-css": "^2.0.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.25",
2019-08-21 15:04:26 +00:00
"prop-types": "^15.7.2",
"react-datetime": "^2.16.3",
"react-router": "^5.0.1",
2019-09-26 11:09:37 +00:00
"react-uid": "^2.2.0"
2019-08-23 13:20:22 +00:00
},
"peerDependencies": {
2019-11-18 12:51:43 +00:00
"immutability-helper": "3.0.1",
2020-01-09 10:25:29 +00:00
"pdfmake": "^0.1.63",
"qrcode.react": "^0.9.3",
2019-11-18 12:51:43 +00:00
"react": "16.9.0",
"react-dom": "16.9.0"
2019-08-21 15:04:26 +00:00
},
"devDependencies": {
2019-09-10 08:30:42 +00:00
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-export-default-from": "^7.2.0",
2019-09-25 13:43:37 +00:00
"@babel/plugin-transform-runtime": "^7.4.4",
2019-08-21 15:04:26 +00:00
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
2019-09-30 09:27:13 +00:00
"@fortawesome/fontawesome-free": "^5.11.2",
2019-09-10 08:30:42 +00:00
"@testing-library/react": "^8.0.9",
2019-08-21 15:04:26 +00:00
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
2019-08-28 08:10:49 +00:00
"babel-plugin-module-resolver": "^3.2.0",
2019-08-21 15:04:26 +00:00
"babel-plugin-react-transform": "^3.0.0",
"babel-polyfill": "^6.26.0",
2019-09-30 09:27:13 +00:00
"bootstrap": "^4.3.1",
2019-12-26 22:22:28 +00:00
"copy-webpack-plugin": "^5.1.1",
2019-09-25 13:43:37 +00:00
"css-loader": "^3.2.0",
2019-09-10 08:30:42 +00:00
"eslint": "^6.1.0",
2019-11-13 10:11:11 +00:00
"eslint-config-reforis": "^1.0.0",
2019-09-30 09:27:13 +00:00
"file-loader": "^4.2.0",
2019-11-18 12:51:43 +00:00
"immutability-helper": "3.0.1",
2019-08-21 15:04:26 +00:00
"jest": "^24.8.0",
"jest-mock-axios": "^3.0.0",
2019-08-23 13:20:22 +00:00
"moment": "^2.24.0",
2019-08-21 15:04:26 +00:00
"moment-timezone": "^0.5.25",
2020-01-09 10:25:29 +00:00
"pdfmake": "^0.1.63",
"qrcode.react": "^0.9.3",
2019-11-18 12:51:43 +00:00
"react": "16.9.0",
"react-dom": "16.9.0",
2019-12-26 22:22:28 +00:00
"react-styleguidist": "^10.3.2",
2019-09-25 13:43:37 +00:00
"snapshot-diff": "^0.5.1",
"style-loader": "^1.0.0",
"webpack": "^4.41.0"
2019-08-21 15:04:26 +00:00
},
"scripts": {
"lint": "eslint src",
2020-01-09 10:25:29 +00:00
"lint:fix": "eslint --fix src",
2019-08-21 15:04:26 +00:00
"test": "jest",
"test:watch": "jest --watch",
2019-09-10 08:30:42 +00:00
"test:coverage": "jest --coverage --colors",
2019-09-25 13:43:37 +00:00
"docs": "npx styleguidist build ",
"docs:watch": "styleguidist server"
2019-11-01 09:28:28 +00:00
}
2019-08-21 15:04:26 +00:00
}