mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Try to fix Sandstorm Wekan.
Thanks to xet7 !
This commit is contained in:
parent
77abde7836
commit
d4a1611b86
6 changed files with 5730 additions and 24 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -32,4 +32,3 @@ ehthumbs.db
|
||||||
.eslintcache
|
.eslintcache
|
||||||
.meteor/local
|
.meteor/local
|
||||||
.devcontainer/docker-compose.extend.yml
|
.devcontainer/docker-compose.extend.yml
|
||||||
package-lock.json
|
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,7 @@ mquandalle:autofocus
|
||||||
ongoworks:speakingurl
|
ongoworks:speakingurl
|
||||||
raix:handlebar-helpers
|
raix:handlebar-helpers
|
||||||
tap:i18n
|
tap:i18n
|
||||||
|
http@1.4.2
|
||||||
|
|
||||||
# UI components
|
# UI components
|
||||||
blaze
|
blaze
|
||||||
|
|
@ -66,6 +67,7 @@ templates:tabs
|
||||||
verron:autosize
|
verron:autosize
|
||||||
simple:json-routes
|
simple:json-routes
|
||||||
rajit:bootstrap3-datepicker
|
rajit:bootstrap3-datepicker
|
||||||
|
shell-server@0.5.0
|
||||||
simple:rest-accounts-password
|
simple:rest-accounts-password
|
||||||
useraccounts:core
|
useraccounts:core
|
||||||
email@2.0.0
|
email@2.0.0
|
||||||
|
|
@ -143,4 +145,3 @@ rajit:bootstrap3-datepicker-zh-tw
|
||||||
staringatlights:fast-render
|
staringatlights:fast-render
|
||||||
spacebars
|
spacebars
|
||||||
georgemccann:meteor-emoji-picker
|
georgemccann:meteor-emoji-picker
|
||||||
jkuester:http
|
|
||||||
|
|
|
||||||
|
|
@ -76,7 +76,6 @@ http@1.4.3
|
||||||
id-map@1.1.0
|
id-map@1.1.0
|
||||||
idmontie:migrations@1.0.3
|
idmontie:migrations@1.0.3
|
||||||
inter-process-messaging@0.1.1
|
inter-process-messaging@0.1.1
|
||||||
jkuester:http@2.0.1
|
|
||||||
jquery@1.11.11
|
jquery@1.11.11
|
||||||
kadira:blaze-layout@2.3.0
|
kadira:blaze-layout@2.3.0
|
||||||
kadira:dochead@1.5.0
|
kadira:dochead@1.5.0
|
||||||
|
|
@ -203,6 +202,7 @@ server-render@0.3.1
|
||||||
service-configuration@1.0.11
|
service-configuration@1.0.11
|
||||||
session@1.2.0
|
session@1.2.0
|
||||||
sha@1.0.9
|
sha@1.0.9
|
||||||
|
shell-server@0.5.0
|
||||||
simple:authenticate-user-by-token@1.0.1
|
simple:authenticate-user-by-token@1.0.1
|
||||||
simple:json-routes@2.1.0
|
simple:json-routes@2.1.0
|
||||||
simple:rest-accounts-password@1.1.2
|
simple:rest-accounts-password@1.1.2
|
||||||
|
|
|
||||||
1
.npmrc
1
.npmrc
|
|
@ -1 +0,0 @@
|
||||||
package-lock=false
|
|
||||||
5690
package-lock.json
generated
Normal file
5690
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
57
package.json
57
package.json
|
|
@ -4,16 +4,21 @@
|
||||||
"description": "Open-Source kanban",
|
"description": "Open-Source kanban",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"lint": "eslint --cache --ext .js --ignore-path .eslintignore .",
|
||||||
|
"lint:eslint:fix": "eslint --ext .js --ignore-path .eslintignore --fix .",
|
||||||
"lint:staged": "lint-staged",
|
"lint:staged": "lint-staged",
|
||||||
"prettify": "prettier --write '**/*.js' '**/*.jsx'"
|
"prettify": "prettier --write '**/*.js' '**/*.jsx'",
|
||||||
|
"test": "npm run lint"
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"*.js": [
|
"*.js": [
|
||||||
"meteor npm run prettify",
|
"meteor npm run prettify",
|
||||||
|
"meteor npm run lint:eslint:fix",
|
||||||
"git add --force"
|
"git add --force"
|
||||||
],
|
],
|
||||||
"*.jsx": [
|
"*.jsx": [
|
||||||
"meteor npm run prettify",
|
"meteor npm run prettify",
|
||||||
|
"meteor npm run lint:eslint:fix",
|
||||||
"git add --force"
|
"git add --force"
|
||||||
],
|
],
|
||||||
"*.json": [
|
"*.json": [
|
||||||
|
|
@ -22,6 +27,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"pre-commit": "lint:staged",
|
"pre-commit": "lint:staged",
|
||||||
|
"eslintConfig": {
|
||||||
|
"extends": "@meteorjs/eslint-config-meteor"
|
||||||
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/wekan/wekan.git"
|
"url": "git+https://github.com/wekan/wekan.git"
|
||||||
|
|
@ -32,35 +40,44 @@
|
||||||
},
|
},
|
||||||
"homepage": "https://wekan.github.io",
|
"homepage": "https://wekan.github.io",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"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",
|
||||||
|
"eslint-plugin-import": "^2.20.0",
|
||||||
|
"eslint-plugin-meteor": "^5.1.0",
|
||||||
|
"eslint-plugin-prettier": "^3.1.2",
|
||||||
"lint-staged": "^7.3.0",
|
"lint-staged": "^7.3.0",
|
||||||
"pre-commit": "^1.2.2",
|
"pre-commit": "^1.2.2",
|
||||||
"prettier": "^1.19.1"
|
"prettier": "^1.19.1",
|
||||||
|
"prettier-eslint": "^9.0.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/core": "^7.13.13",
|
"@babel/core": "^7.9.6",
|
||||||
"@babel/eslint-parser": "^7.13.10",
|
"@babel/runtime": "^7.9.6",
|
||||||
"@babel/runtime": "^7.13.10",
|
"@root/request": "^1.6.1",
|
||||||
"ajv": "^8.0.1",
|
"ajv": "^6.12.4",
|
||||||
"babel-runtime": "^6.26.0",
|
"babel-runtime": "^6.26.0",
|
||||||
"bcrypt": "^5.0.1",
|
"bcrypt": "^5.0.0",
|
||||||
"bson": "^4.2.3",
|
"bson": "^4.0.3",
|
||||||
"bunyan": "^1.8.15",
|
"bunyan": "^1.8.12",
|
||||||
"core-js": "^3.9.1",
|
"es6-promise": "^4.2.4",
|
||||||
"es6-promise": "^4.2.8",
|
|
||||||
"exceljs": "^4.2.1",
|
"exceljs": "^4.2.1",
|
||||||
"fibers": "^5.0.0",
|
"fibers": "^5.0.0",
|
||||||
"flatted": "^3.1.1",
|
"flatted": "^3.0.4",
|
||||||
"gridfs-stream": "https://github.com/wekan/gridfs-stream/tarball/master",
|
"gridfs-stream": "https://github.com/wekan/gridfs-stream/tarball/master",
|
||||||
"jszip": "^3.6.0",
|
"jszip": "^3.4.0",
|
||||||
"ldapjs": "^2.2.4",
|
"ldapjs": "^2.1.1",
|
||||||
"markdown-it": "^12.0.4",
|
"markdown-it": "^12.0.2",
|
||||||
"markdown-it-emoji": "^2.0.0",
|
"markdown-it-emoji": "^2.0.0",
|
||||||
"meteor-node-stubs": "^1.0.3",
|
"meteor-node-stubs": "^1.0.1",
|
||||||
"mongodb": "^3.6.5",
|
"mongodb": "^3.6.2",
|
||||||
"os": "^0.1.1",
|
"os": "^0.1.1",
|
||||||
"page": "^1.11.6",
|
"page": "^1.11.5",
|
||||||
"papaparse": "^5.3.0",
|
"papaparse": "^5.2.0",
|
||||||
"qs": "^6.10.1",
|
"qs": "^6.9.4",
|
||||||
|
"source-map-support": "^0.5.19",
|
||||||
"xss": "^1.0.8"
|
"xss": "^1.0.8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue