-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
68 lines (68 loc) · 2.22 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"svg-sprite": "svg-sprite -s --symbol-dest public --symbol-sprite glyphs.svg notes/glyphs/*.svg",
"eslint": "npx eslint . --ext .js,.vue",
"playwright": "npx playwright test",
"playwright-debug": "npx playwright test --project=chromium --debug",
"playwright-trace": "npx playwright test --project=chromium --trace on",
"codegen": "npx playwright codegen"
},
"devDependencies": {
"@playwright/test": "^1.31.2",
"axios": "^0.21.4",
"browser-sync": "^2.26.14",
"browser-sync-webpack-plugin": "^2.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.3.0",
"laravel-mix": "^6.0.41",
"postcss-loader": "^5.2.0",
"prettier": "^2.7.1",
"resolve-url-loader": "^3.1.2",
"sass": "^1.32.11",
"sass-loader": "^11.0.1",
"svg-vue3": "^0.2.1",
"vue": "^2.7.0",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.7.14",
"webpack": "^5.35.0"
},
"dependencies": {
"@riophae/vue-treeselect": "^0.4.0",
"@tiptap/core": "^2.0.4",
"@tiptap/extension-image": "^2.0.4",
"@tiptap/extension-link": "^2.0.4",
"@tiptap/extension-placeholder": "^2.0.4",
"@tiptap/extension-task-item": "^2.0.4",
"@tiptap/extension-task-list": "^2.0.4",
"@tiptap/extension-typography": "^2.0.4",
"@tiptap/extension-underline": "^2.0.4",
"@tiptap/starter-kit": "^2.0.4",
"@tiptap/vue-2": "^2.0.4",
"dotenv": "^8.2.0",
"laravel-mix-svg-vue": "^0.3.6",
"tailwindcss": "^2.2.16",
"vue-cookie": "^1.1.4",
"vue-lazyload": "^1.3.3",
"vue-router": "^3.4.9",
"vue-select": "^3.20.0",
"vuedraggable": "^2.24.3",
"vuex": "^3.6.0",
"workbox-cacheable-response": "^6.0.2",
"workbox-core": "^6.0.2",
"workbox-expiration": "^6.0.2",
"workbox-precaching": "^6.0.2",
"workbox-routing": "^6.0.2",
"workbox-strategies": "^6.0.2",
"workbox-webpack-plugin": "^6.0.2"
}
}