-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
40 lines (40 loc) · 1.34 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix build",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix build --production",
"format": "eslint --fix resources/js/**/*.{js,vue} *.js && prettier --write *.md",
"nova:install": "npm --prefix='./vendor/laravel/nova' ci"
},
"dependencies": {
"@editorjs/checklist": "^1.3.0",
"@editorjs/code": "^2.7.0",
"@editorjs/delimiter": "^1.2.0",
"@editorjs/editorjs": "^2.24.3",
"@editorjs/embed": "^2.5.1",
"@editorjs/header": "^2.6.2",
"@editorjs/image": "^2.6.2",
"@editorjs/inline-code": "^1.3.1",
"@editorjs/link": "^2.4.1",
"@editorjs/list": "^1.7.0",
"@editorjs/marker": "^1.2.2",
"@editorjs/paragraph": "^2.8.0",
"@editorjs/raw": "^2.3.1",
"@editorjs/table": "^2.0.2"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.2.36",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-vue": "^9.1.0",
"laravel-mix": "^6.0.44",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"vue-loader": "^16.8.3"
}
}