2015-10-27 17:40:38 +01:00
|
|
|
{
|
2016-07-20 22:15:01 +02:00
|
|
|
"name": "wekan",
|
2021-05-07 16:23:55 +03:00
|
|
|
"version": "v5.28.0",
|
2018-10-31 22:03:30 +02:00
|
|
|
"description": "Open-Source kanban",
|
2015-10-27 17:40:38 +01:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2021-03-28 10:15:44 +03:00
|
|
|
"lint": "eslint --cache --ext .js --ignore-path .eslintignore .",
|
|
|
|
"lint:eslint:fix": "eslint --ext .js --ignore-path .eslintignore --fix .",
|
2019-06-26 19:15:59 -05:00
|
|
|
"lint:staged": "lint-staged",
|
2021-03-28 10:15:44 +03:00
|
|
|
"prettify": "prettier --write '**/*.js' '**/*.jsx'",
|
|
|
|
"test": "npm run lint"
|
2015-10-27 17:40:38 +01:00
|
|
|
},
|
2019-06-26 19:15:59 -05:00
|
|
|
"lint-staged": {
|
|
|
|
"*.js": [
|
|
|
|
"meteor npm run prettify",
|
2021-03-28 10:15:44 +03:00
|
|
|
"meteor npm run lint:eslint:fix",
|
2019-06-26 19:15:59 -05:00
|
|
|
"git add --force"
|
|
|
|
],
|
|
|
|
"*.jsx": [
|
|
|
|
"meteor npm run prettify",
|
2021-03-28 10:15:44 +03:00
|
|
|
"meteor npm run lint:eslint:fix",
|
2019-06-26 19:15:59 -05:00
|
|
|
"git add --force"
|
|
|
|
],
|
|
|
|
"*.json": [
|
|
|
|
"prettier --write",
|
|
|
|
"git add --force"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"pre-commit": "lint:staged",
|
2021-03-28 10:15:44 +03:00
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "@meteorjs/eslint-config-meteor"
|
|
|
|
},
|
2015-10-27 17:40:38 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-02-10 18:02:19 +02:00
|
|
|
"url": "git+https://github.com/wekan/wekan.git"
|
2015-10-27 17:40:38 +01:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2017-02-10 18:02:19 +02:00
|
|
|
"url": "https://github.com/wekan/wekan/issues"
|
2015-10-27 17:40:38 +01:00
|
|
|
},
|
2017-03-24 22:31:59 +02:00
|
|
|
"homepage": "https://wekan.github.io",
|
2015-10-27 17:40:38 +01:00
|
|
|
"devDependencies": {
|
2021-03-28 10:15:44 +03:00
|
|
|
"babel-eslint": "^10.1.0",
|
|
|
|
"eslint": "^5.16.0",
|
|
|
|
"eslint-config-meteor": "0.0.9",
|
|
|
|
"eslint-config-prettier": "^3.6.0",
|
|
|
|
"eslint-import-resolver-meteor": "^0.4.0",
|
2021-05-07 02:13:20 +03:00
|
|
|
"eslint-plugin-import": "^2.2.0",
|
2021-03-28 10:15:44 +03:00
|
|
|
"eslint-plugin-meteor": "^5.1.0",
|
|
|
|
"eslint-plugin-prettier": "^3.1.2",
|
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",
|
2021-03-28 10:15:44 +03:00
|
|
|
"prettier": "^1.19.1",
|
|
|
|
"prettier-eslint": "^9.0.2"
|
2016-07-18 16:56:15 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-03-28 10:15:44 +03:00
|
|
|
"@babel/core": "^7.9.6",
|
|
|
|
"@babel/runtime": "^7.9.6",
|
2021-05-07 02:13:20 +03:00
|
|
|
"@liradb2000/markdown-it-mermaid": "^0.4.2",
|
2021-03-28 10:15:44 +03:00
|
|
|
"ajv": "^6.12.4",
|
2019-08-10 21:21:42 -04:00
|
|
|
"babel-runtime": "^6.26.0",
|
2021-05-07 12:32:44 +03:00
|
|
|
"bcryptjs": "^2.4.3",
|
2021-03-28 10:15:44 +03:00
|
|
|
"bson": "^4.0.3",
|
|
|
|
"bunyan": "^1.8.12",
|
2021-05-07 02:13:20 +03:00
|
|
|
"dompurify": "^2.2.8",
|
2021-03-28 10:15:44 +03:00
|
|
|
"es6-promise": "^4.2.4",
|
2021-03-28 07:24:24 +03:00
|
|
|
"exceljs": "^4.2.1",
|
2020-06-04 01:34:49 +03:00
|
|
|
"fibers": "^5.0.0",
|
2021-03-28 10:15:44 +03:00
|
|
|
"flatted": "^3.0.4",
|
2020-09-11 12:43:01 -05:00
|
|
|
"gridfs-stream": "https://github.com/wekan/gridfs-stream/tarball/master",
|
2021-04-29 13:26:49 +03:00
|
|
|
"jszip": "^3.6.0",
|
2021-03-28 10:15:44 +03:00
|
|
|
"ldapjs": "^2.1.1",
|
|
|
|
"markdown-it": "^12.0.2",
|
2020-11-12 20:22:54 +02:00
|
|
|
"markdown-it-emoji": "^2.0.0",
|
2021-04-12 19:32:00 +03:00
|
|
|
"meteor-node-stubs": "^1.0.3",
|
2021-03-28 10:15:44 +03:00
|
|
|
"mongodb": "^3.6.2",
|
2017-08-03 09:24:40 +09:00
|
|
|
"os": "^0.1.1",
|
2021-03-28 10:15:44 +03:00
|
|
|
"page": "^1.11.5",
|
|
|
|
"papaparse": "^5.2.0",
|
|
|
|
"qs": "^6.9.4",
|
2021-05-07 02:13:20 +03:00
|
|
|
"source-map-support": "^0.5.19"
|
2015-10-27 17:40:38 +01:00
|
|
|
}
|
|
|
|
}
|