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

72 lines
2.0 KiB
JSON
Raw Normal View History

2019-08-21 15:04:26 +00:00
{
"name": "foris",
2019-09-02 07:38:36 +00:00
"version": "0.0.7",
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",
"url": "https://gitlab.labs.nic.cz/turris/reforis/forisjs.git"
},
"keywords": [
"foris",
"reforis"
],
"license": "GPL-3.0",
2019-08-23 13:20:22 +00:00
"main": "./dist/index.js",
2019-08-21 15:04:26 +00:00
"dependencies": {
"axios": "^0.19.0",
"immutability-helper": "^3.0.1",
"prop-types": "^15.7.2",
"react-datetime": "^2.16.3",
"react-router": "^5.0.1",
2019-08-23 13:20:22 +00:00
"react-uid": "^2.2.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.25"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
2019-08-21 15:04:26 +00:00
},
"devDependencies": {
2019-08-28 13:08:30 +00:00
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
2019-08-27 09:54:57 +00:00
"@babel/plugin-syntax-export-default-from": "^7.2.0",
2019-08-21 15:04:26 +00:00
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^8.0.1",
"babel-eslint": "^9.0.0",
"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",
"eslint": "^5.16.0",
2019-08-27 09:54:57 +00:00
"eslint-config-airbnb": "^18.0.1",
2019-08-21 15:04:26 +00:00
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"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",
2019-08-23 13:20:22 +00:00
"react": "^16.9.0",
"react-dom": "^16.9.0",
2019-08-21 15:04:26 +00:00
"react-styleguidist": "^9.1.11",
2019-08-23 13:20:22 +00:00
"snapshot-diff": "^0.5.1"
2019-08-21 15:04:26 +00:00
},
"scripts": {
2019-08-27 09:54:57 +00:00
"build": "rm -rf dist; babel src --out-dir dist --ignore '**/__tests__' --source-maps inline",
2019-08-23 13:20:22 +00:00
"prepare": "rm -rf ./dist && npm run build",
2019-08-21 15:04:26 +00:00
"lint": "eslint src",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors"
2019-08-23 13:20:22 +00:00
},
"files": [
2019-08-28 12:35:29 +00:00
"dist/**",
"translations"
2019-08-23 13:20:22 +00:00
]
2019-08-21 15:04:26 +00:00
}