wekan/package.json

86 lines
2.3 KiB
JSON
Raw Normal View History

{
"name": "wekan",
2021-02-03 02:32:00 +02:00
"version": "v4.92.0",
2018-10-31 22:03:30 +02:00
"description": "Open-Source kanban",
"private": true,
"scripts": {
2019-06-26 19:15:59 -05:00
"lint": "eslint --cache --ext .js --ignore-path .eslintignore .",
"lint:eslint:fix": "eslint --ext .js --ignore-path .eslintignore --fix .",
"lint:staged": "lint-staged",
2019-06-26 18:57:46 -05:00
"prettify": "prettier --write '**/*.js' '**/*.jsx'",
2019-06-28 12:52:09 -05:00
"test": "npm run lint"
},
2019-06-26 19:15:59 -05:00
"lint-staged": {
"*.js": [
"meteor npm run prettify",
"meteor npm run lint:eslint:fix",
"git add --force"
],
"*.jsx": [
"meteor npm run prettify",
"meteor npm run lint:eslint:fix",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"pre-commit": "lint:staged",
"eslintConfig": {
"extends": "@meteorjs/eslint-config-meteor"
},
"repository": {
"type": "git",
2017-02-10 18:02:19 +02:00
"url": "git+https://github.com/wekan/wekan.git"
},
"license": "MIT",
"bugs": {
2017-02-10 18:02:19 +02:00
"url": "https://github.com/wekan/wekan/issues"
},
2017-03-24 22:31:59 +02:00
"homepage": "https://wekan.github.io",
"devDependencies": {
2021-02-03 18:56:44 +02:00
"eslint": "^7.19.0",
2020-03-14 17:00:21 +02:00
"eslint-config-meteor": "0.0.9",
"eslint-config-prettier": "^3.6.0",
2019-06-26 18:57:46 -05:00
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.22.1",
2021-02-03 18:56:44 +02:00
"eslint-plugin-meteor": "^7.2.2",
"eslint-plugin-prettier": "^3.3.1",
2020-03-14 17:00:21 +02:00
"lint-staged": "^7.3.0",
2019-06-26 19:15:59 -05:00
"pre-commit": "^1.2.2",
2020-01-10 02:54:10 +02:00
"prettier": "^1.19.1",
2020-05-24 06:54:48 +03:00
"prettier-eslint": "^9.0.2"
2016-07-18 16:56:15 +02:00
},
"dependencies": {
"@babel/core": "^7.12.10",
2021-02-03 18:56:44 +02:00
"@babel/eslint-parser": "^7.12.13",
"@babel/runtime": "^7.12.5",
2021-02-03 18:56:44 +02:00
"@typescript-eslint/parser": "^4.14.2",
"ajv": "^7.0.4",
"babel-runtime": "^6.26.0",
"bcrypt": "^5.0.0",
"bson": "^4.2.2",
"bunyan": "^1.8.15",
2021-02-03 18:56:44 +02:00
"core-js": "^3.8.3",
"es6-promise": "^4.2.4",
"exceljs": "^4.2.0",
2020-06-04 01:34:49 +03:00
"fibers": "^5.0.0",
"flatted": "^3.1.1",
"gridfs-stream": "https://github.com/wekan/gridfs-stream/tarball/master",
"jszip": "^3.5.0",
"ldapjs": "^2.2.3",
"markdown-it": "^12.0.4",
"markdown-it-emoji": "^2.0.0",
"meteor-node-stubs": "^1.0.1",
"mongodb": "^3.6.4",
"os": "^0.1.1",
"page": "^1.11.5",
"papaparse": "^5.3.0",
"qs": "^6.9.6",
2021-02-03 18:56:44 +02:00
"source-map-resolve": "^0.6.0",
2020-05-12 21:21:22 +03:00
"source-map-support": "^0.5.19",
"xss": "^1.0.8"
}
}