-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
105 lines (105 loc) · 3.73 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"private": true,
"scripts": {
"dev": "yarn development",
"development": "mix",
"predevelopment": "php artisan lang:generate -vvv",
"watch": "mix watch",
"prewatch": "php artisan lang:generate -vvv",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "yarn production",
"production": "mix --production",
"preproduction": "php artisan lang:generate -vvv",
"heroku-postbuild": "yarn run production",
"e2e": "cypress run",
"e2e-gui": "cypress open",
"inst": "yarn install --frozen-lockfile",
"lint": "eslint --ext .js,.vue *.js .*.js resources/js/",
"lint:cypress": "eslint --ext .js tests/Features/",
"lint:all": "yarn lint & yarn lint:cypress",
"lint:fix": "yarn lint --fix & yarn lint:cypress --fix",
"cypress": "mv .env .env2 && mv .env.cypress.local .env && yarn run e2e-gui",
"normal": "mv .env .env.cypress.local && mv .env2 .env",
"pretest": "DB_CONNECTION=testing php artisan migrate:fresh && DB_CONNECTION=testing php artisan db:seed",
"test": "vendor/bin/phpunit",
"posttest": "vendor/bin/phpstan analyse && vendor/bin/psalm",
"local": "php artisan migrate:fresh && php artisan db:seed",
"composer update": "COMPOSER_MEMORY_LIMIT=-1 composer update"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"cross-env": "^7.0",
"cypress": "6.1.0",
"eslint": "^7.11.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-cypress": ">=2.11.2",
"eslint-plugin-import": ">=2.22.1",
"eslint-plugin-node": ">=11.1.0",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^7.0.1",
"faker": "^5.1.0",
"husky": "^4.3.0",
"laravel-mix": "^6.0.6",
"laravel-mix-purgecss": "^6.0.0",
"lint-staged": "^10.4.0",
"mrm": "^2.5.2",
"postcss": "^8.1.14",
"postcss-import": "^12.0.1",
"prettier": "^2.1.2",
"resolve-url-loader": "^3.1",
"sass-loader": "^11.0.0",
"tiptap": "^1.30.0",
"tiptap-extensions": "^1.24.0",
"underscore": "^1.11.0",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"@inertiajs/inertia": "^0.8.4",
"@inertiajs/inertia-vue3": "^0.3.5",
"@inertiajs/progress": "^0.2.4",
"@popperjs/core": "^2.5",
"@sentry/browser": "^6.2.5",
"@sentry/integrations": "^6.2.5",
"@sentry/tracing": "^6.2.5",
"@vue/compiler-sfc": "3.0.11",
"ant-design-vue": "^3.1.1",
"axios": "^0.21",
"click-outside-vue3": "^4.0.1",
"donutty": "^2.3.0",
"lodash": "^4.17.20",
"sass": "^1.27.0",
"tachyons": "^4.12.0",
"tiny-emitter": "^2.1.0",
"uploadcare-vue": "^1.0.0",
"v-calendar": "^3.0.0-alpha.8",
"v-tooltip": "^2.0.2",
"vue": "^3.0.11",
"vue-final-modal": "^3.4.3",
"vue-i18n": "^9.0.0",
"vue-loader": "^16.1.2",
"vue-loaders": "^4.1.1",
"vue-the-mask": "^0.11.1",
"vuedraggable": "^4.1.0"
},
"lint-staged": {
"resources/**/*.{css,scss}": [
"prettier --write --ignore-unknown"
],
"*.php": [
"vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php"
],
"*.js|.*.js|resources/js/**/*.{vue,js}": [
"yarn lint --fix"
],
"tests/Features/**/*.js": [
"yarn lint:cypress --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}