-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.52 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
{
"name": "dev-flow",
"version": "1.0.0",
"private": true,
"scripts": {
"dev:docker": "docker-compose -f docker-compose.development.yml up --build",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"lint": "yarn lint:style --fix && yarn lint:js --fix"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.58.0",
"@fullcalendar/core": "^6.1.9",
"@fullcalendar/daygrid": "^6.1.9",
"@fullcalendar/vue": "^6.1.9",
"@mycure/vue-jitsi-meet": "^0.0.7",
"@nuxt/content": "^1.9.0",
"@nuxtjs/auth-next": "5.0.0-1611071776.3646657",
"@nuxtjs/axios": "^5.12.2",
"@nuxtjs/markdownit": "^2.0.0",
"@nuxtjs/pwa": "^3.0.2",
"@nuxtjs/toast": "^3.3.1",
"@octokit/rest": "^18.0.12",
"blurhash": "^1.1.5",
"body-parser": "^1.19.0",
"bootstrap": "^4.6.0",
"bootstrap-vue": "^2.17.3",
"core-js": "^3.8.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.17.1",
"express-jwt": "^6.1.1",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"linkifyjs": "^3.0.0-beta.3",
"lodash": "^4.17.21",
"markdown-it-task-lists": "^2.1.1",
"matrix-js-sdk": "^17.0.1",
"mongoose": "^5.11.13",
"mongoose-unique-validator": "^2.0.3",
"multer": "^1.4.2",
"nuxt": "^2.14.6",
"nuxt-validate": "^1.0.1",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"quill-markdown-shortcuts": "^0.0.10",
"quilljs-markdown": "^1.1.10",
"sharp": "^0.28.1",
"slugify": "^1.4.7",
"uuid": "^8.3.2",
"v-tooltip": "^2.1.3",
"vue-mention": "^1.0.0",
"vue-quill-editor": "^3.0.6",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nuxtjs/eslint-config": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.15.1",
"fiber": "^1.0.4",
"husky": "^4.3.8",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"stylelint": "^13.9.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0"
}
}