-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "craft-boilerplate",
"version": "1.0.0",
"description": "This project is based on the official [Craft 3 starter project](https://github.com/craftcms/craft/)",
"main": "webpack.mix.js",
"repository": {
"type": "git",
"url": "github.com:jmcgaha/craft-boilerplate.git"
},
"author": "Jonathan McGaha",
"bugs": {
"url": "https://github.com/jmcgaha/craft-boilerplate/issues"
},
"homepage": "https://github.com/jmcgaha/craft-boilerplate#readme",
"dependencies": {
"autoprefixer": "^10.4.20",
"browser-sync": "^3.0.3",
"dotenv": "^16.4.7",
"favicons": "^7.2.0",
"laravel-mix": "^6.0.49",
"laravel-mix-versionhash": "^2.0.1",
"postcss": "^8.4.49",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@prettier/plugin-php": "^0.22.2",
"@zackad/prettier-plugin-twig": "^0.14.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9"
},
"engines": {
"npm": ">=8.12.0",
"node": ">=18.4.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"scripts": {
"dev": "mix",
"watch": "mix watch",
"prod": "mix --production",
"pull-database-prod": "./scripts/pull_db-prod.sh",
"pull-database-staging": "./scripts/pull_db-staging.sh",
"pull-assets-prod": "./scripts/pull_assets-prod.sh",
"pull-assets-staging": "./scripts/pull_assets-staging.sh",
"craft-migrate": "./craft migrate/all",
"craft-sync": "./craft project-config/sync",
"composer-update": "composer update",
"composer-install": "composer install",
"composer-outdated": "composer outdated",
"favicons": "node favicons.js"
}
}