-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.76 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "wekan",
"version": "v9.22.0",
"description": "Open-Source kanban",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/wekan/wekan.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wekan/wekan/issues"
},
"homepage": "https://wekan.fi",
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"modern": true
},
"scripts": {
"test": "meteor test --once --driver-package meteortesting:mocha",
"test:watch": "meteor test --driver-package meteortesting:mocha",
"test:e2e": "node tests/e2e/list-regressions.js",
"test:playwright": "cd tests/playwright && npx playwright test",
"test:playwright:ui": "cd tests/playwright && npx playwright test --ui",
"test:playwright:all": "cd tests/playwright && npx playwright test --project=chromium --project=firefox --project=webkit",
"test:playwright:report": "cd tests/playwright && npx playwright show-report",
"playwright:install": "cd tests/playwright && npx playwright install --with-deps"
},
"devDependencies": {
"@meteorjs/rspack": "^2.0.1",
"@rsdoctor/rspack-plugin": "^1.5.7",
"@rspack/cli": "^1.7.11",
"@rspack/core": "^1.7.11",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"css-loader": "^7.1.4",
"sinon": "^21.1.2",
"sinon-chai": "^4.0.1",
"style-loader": "^4.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1019.0",
"@babel/parser": "^7.29.2",
"@babel/runtime": "^7.29.2",
"@meteorjs/reify": "^0.25.4",
"@rwap/jquery-ui-touch-punch": "^1.0.11",
"@swc/helpers": "^0.5.19",
"@textcomplete/contenteditable": "^0.1.13",
"@textcomplete/core": "^0.1.13",
"@textcomplete/textarea": "^0.1.13",
"@wekanteam/dragscroll": "^0.0.9",
"@wekanteam/exceljs": "^4.7.1",
"@wekanteam/html-to-markdown": "^1.0.3",
"@wekanteam/meteor-globals": "^1.1.6",
"@wekanteam/meteor-reactive-cache": "^1.0.8",
"archiver": "^7.0.1",
"autosize": "^6.0.1",
"bson": "^7.2.0",
"dompurify": "^3.4.0",
"escape-string-regexp": "^5.0.0",
"filesize": "^11.0.13",
"glob": "^13.0.6",
"hotkeys-js": "^4.0.2",
"i18next": "^25.10.4",
"i18next-sprintf-postprocessor": "^0.2.2",
"jquery": "^3.7.1",
"jquery-ui": "^1.14.2",
"jszip": "^3.7.1",
"limax": "^4.2.3",
"markdown-it": "^14.1.1",
"markdown-it-emoji": "^3.0.0",
"markdown-it-mathjax3": "^5.2.0",
"meteor-accounts-t9n": "^2.6.0",
"meteor-node-stubs": "^1.2.26",
"papaparse": "^5.5.3",
"pretty-ms": "^9.3.0",
"underscore": "^1.13.8"
},
"overrides": {
"sourcemap-codec": "npm:@jridgewell/sourcemap-codec@^1.4.15",
"elliptic": "^6.6.1",
"archiver-utils": {
"glob": "$glob"
}
}
}