-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.35 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
{
"scripts": {
"lint": "yarn prettier --config .prettierrc --ignore-unknown --check 'app/javascript/**/*'",
"lint:fix": "yarn prettier --config .prettierrc --ignore-unknown --write 'app/javascript/**/*'"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.2.1",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.18",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.0.0",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.8.4",
"sass": "^1.56.1",
"vite": "^3.2.0",
"vite-plugin-ruby": "^3.1.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/vue-fontawesome": "^3.0.2",
"@popperjs/core": "^2.11.6",
"@rails/actioncable": "^7.0.2-4",
"@tailwindcss/typography": "0.2.0",
"@tinymce/tinymce-vue": "^4",
"@tiptap/extension-mention": "^2.0.0-beta.218",
"@tiptap/extension-placeholder": "^2.0.0-beta.217",
"@tiptap/pm": "^2.0.0-beta.217",
"@tiptap/starter-kit": "^2.0.0-beta.217",
"@tiptap/suggestion": "^2.0.0-beta.218",
"@tiptap/vue-3": "^2.0.0-beta.217",
"@tryfabric/mack": "^1.2.1",
"@vicons/ionicons5": "^0.12.0",
"@vitejs/plugin-vue": "^2.3.1",
"axios": "^0.26.1",
"babel-eslint": "^10.1.0",
"click-outside-vue3": "^4.0.1",
"crypto-js": "^4.1.1",
"grapheme-splitter": "^1.0.4",
"mitt": "^3.0.0",
"moment": "^2.29.4",
"naive-ui": "^2.33.5",
"pinia": "^2.0.13",
"popper.js": "^1.16.1",
"recordrtc": "^5.6.2",
"remarkable": "^2.0.1",
"splitpanes": "^3.1.5",
"tailwindcss": "^1.9.6",
"tippy.js": "^6.3.7",
"tiptap": "^1.32.2",
"tiptap-extensions": "^1.35.2",
"turndown": "^7.1.1",
"vee-validate": "^4.7.3",
"vue": "^3.2.33",
"vue-axios": "^3.4.1",
"vue-i18n": "^9.1.10",
"vue-router": "^4.0.14",
"vue3-emoji-picker": "^1.1.7",
"vue3-rich-accordion": "^0.0.7",
"wavesurfer.js": "^6.4.0"
},
"engines": {
"node": ">=16.x",
"npm": ">=7.x",
"yarn": ">=1.x"
},
"lint-staged": {
"app/**/*.{js,vue}": [
"eslint --fix",
"git add"
],
"!(*schema).rb": [
"bundle exec rubocop -a",
"git add"
],
"*.scss": [
"scss-lint"
]
}
}