This repository was archived by the owner on Aug 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.19 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.19 KB
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
{
"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",
"prettier": "prettier -c .",
"prettier-fix": "prettier -w .",
"eslint": "eslint resources",
"eslint-fix": "eslint --fix resources",
"lint": "npm run eslint && npm run prettier",
"lint-fix": "npm run eslint-fix && npm run prettier-fix",
"test": "cross-env NODE_ENV=test jest",
"tdd": "npm run test -- --watch --notify"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.0",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.0",
"@fortawesome/vue-fontawesome": "^2.0.6",
"@inertiajs/inertia": "^0.11.0",
"@inertiajs/inertia-vue": "^0.8.0",
"@inertiajs/progress": "^0.2.7",
"@tailwindcss/forms": "^0.5.1",
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "^10.2.6",
"axios": "^0.24.0",
"babel-jest": "^27.4.5",
"browser-sync": "^2.27.7",
"browser-sync-webpack-plugin": "^2.3.0",
"copy-to-clipboard": "^3.3.1",
"cross-env": "^7.0.3",
"easymde": "^2.15.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0-1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.2.0",
"fuse.js": "^6.5.3",
"jest": "^27.4.5",
"laravel-echo": "^1.11.3",
"laravel-mix": "^6.0.42",
"lodash": "^4.17.21",
"luxon": "^2.2.0",
"marked": "^4.0.12",
"popper.js": "^1.16.1",
"postcss": "^8.4.5",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"pusher-js": "^7.0.3",
"resolve-url-loader": "^4.0.0",
"sass": "^1.45.0",
"sass-loader": "^12.4.0",
"tailwindcss": "^3.0.7",
"tippy.js": "^6.3.7",
"vue": "^2.6.14",
"vue-croppie": "^2.0.2",
"vue-i18n": "^8.26.7",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14"
},
"dependencies": {
"vee-validate": "^3.4.14"
}
}