-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
86 lines (86 loc) · 2.75 KB
/
package.json
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
{
"name": "latelier",
"private": true,
"scripts": {
"start": "MAIL_URL=smtp://localhost:1025 meteor run --settings settings-development.json --exclude-archs 'web.browser.legacy,web.cordova'",
"start-dev": "meteor run --settings settings-development.json --exclude-archs 'web.browser.legacy,web.cordova'",
"test": "MOCHA_TIMEOUT=15000 meteor test --once --driver-package meteortesting:mocha",
"test-run": "MOCHA_TIMEOUT=15000 meteor test --driver-package meteortesting:mocha",
"test-app": "MOCHA_TIMEOUT=15000 TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"lint": "eslint --ext .js,.vue .",
"pretest": "npm run lint --silent"
},
"dependencies": {
"@babel/runtime": "^7.23.2",
"aws-sdk": "^2.1494.0",
"bcrypt": "^5.0.0",
"bpmn-js": "^6.5.1",
"carbone": "^1.2.1",
"connect-route": "^0.1.5",
"diagram-js-minimap": "^2.0.3",
"faker": "^4.1.0",
"file-saver": "^2.0.2",
"fs-extra": "^7.0.1",
"gm": "^1.23.1",
"handlebars": "^4.7.7",
"html-to-text": "^8.0.0",
"intersection-observer": "^0.10.0",
"jquery": "^3.5.0",
"jszip": "^3.10.1",
"linkifyjs": "^2.1.9",
"lodash": ">=4.17.21",
"meteor-node-stubs": "^1.2.5",
"mjml": "^4.9.0",
"mobile-drag-drop": "^2.3.0-rc.2",
"moment": "^2.29.4",
"node-pandoc": "^0.3.0",
"path": "^0.12.7",
"pretty-checkbox": "^3.0.3",
"showdown": "^1.9.1",
"simpl-schema": "^1.10.2",
"sortablejs": "^1.10.2",
"tiptap": "^1.32.2",
"tiptap-extensions": "^1.35.2",
"v-click-outside": "^2.1.5",
"vue": "^2.6.11",
"vue-dragscroll": "^1.10.2",
"vue-event-handler": "^1.1.8",
"vue-hot-reload-api": "^2.3.4",
"vue-i18n": "^8.17.4",
"vue-matomo": "^3.14.0-0",
"vue-meteor-tracker": "^1.2.3",
"vue-observe-visibility": "^0.4.6",
"vue-router": "^3.1.6",
"vue-router-multiguard": "^1.0.3",
"vue-shortkey": "^3.1.7",
"vue2vis": "0.0.16",
"vuelidate": "^0.7.5",
"vuetify": "^2.3.21",
"vuex": "^3.3.0"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "test/main.js",
"nodeModules": {
"diagram-js-minimap": true
}
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-meteor": "^7.3.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-vue": "^7.11.1"
}
}