forked from spatie/freek.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.96 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"format": "prettier 'resources/**/*.{css,js,json,css,ts,tsx}' '*.{js,css}' --write",
"build-generate-newsletter": "cd nova-components/GenerateNewsletter && yarn dev",
"build-generate-newsletter-prod": "cd nova-components/GenerateNewsletter && yarn && yarn prod"
},
"dependencies": {
"@tailwindcss/custom-forms": "^0.2.1",
"algoliasearch": "^3.24.5",
"preact": "^8.4.2",
"preact-compat": "^3.18.5"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"cross-env": "^5.1.1",
"husky": "^2.3.0",
"laravel-mix": "^4.0",
"laravel-mix-purgecss": "^4.0",
"lint-staged": "^8.1.7",
"prettier": "^1.10.2",
"tailwindcss": "^1.1.0",
"vue-template-compiler": "^2.6.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{css,js,ts,tsx}": [
"prettier --write",
"git add"
],
"*.php": [
"php ./vendor/bin/php-cs-fixer fix --config .php_cs",
"git add"
]
},
"ignore": [
"public/**/*"
]
}
}