This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.68 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
{
"name": "k3-scaffold",
"version": "2.0.0",
"description": "",
"main": "index.php",
"type": "module",
"scripts": {
"serve": "npx gulp serve",
"build": "NODE_ENV=production npx gulp build",
"push": "rsync -avhi html/ [email protected]:/var/www/example.com/html --chown=www-data:www-data --exclude-from=.rsync-push-exclude --delete",
"pull-content": "rsync -avhi [email protected]:/var/www/example.com/html/content/ html/content --exclude=.DS_Store --exclude=.lock --delete",
"push-staging": "rsync -avhi html/ [email protected]:/var/www/staging.example.com/html --chown=www-data:www-data --exclude-from=.rsync-push-exclude --delete",
"push-content-staging": "rsync -avhi html/content/ [email protected]:/var/www/staging.example.com/html/content --chown=www-data:www-data --delete",
"pull-content-staging": "rsync -avhi [email protected]:/var/www/staging.example.com/html/content/ html/content --exclude=.DS_Store --exclude=.lock --delete"
},
"keywords": [],
"author": "Philip Marnef",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/philipmarnef/k3-scaffold"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"autoprefixer": "^10.4.14",
"babel-loader": "^8.2.3",
"browser-sync": "^3.0.2",
"css-loader": "^6.4.0",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-imagemin": "^8.0.0",
"gulp-postcss": "^9.0.1",
"gulp-sourcemaps": "^3.0.0",
"postcss": "^8.4.31",
"postcss-easy-import": "^3.0.0",
"tailwindcss": "^3.0.23",
"webpack": "^5.76.0",
"webpack-stream": "^7.0.0"
},
"browserslist": [
"cover 99.5% in BE"
]
}