forked from fruitstudios/craft-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "fruit-core",
"version": "0.1.1",
"homepage": "https://github.com/fruitstudios/core",
"repository": {
"type": "git",
"url": "https://github.com/fruitstudios/core.git"
},
"description": "Core is a project boilerplate for Craft 3",
"author": "Sean Hill",
"main": "gulpfile.js",
"license": "MIT",
"paths": {
"src": {
"css": "./src/css/",
"images": "./src/images/**/*",
"fonts": "./src/fonts/*",
"svgs": "./src/icons/svg/**/*.svg",
"js": [
"./src/js/vendor/**/*.js",
"./src/js/app.js",
"./src/js/modules/**/*.js"
]
},
"tailwind": {
"src": "./src/css/app.css",
"config": "./tailwind.js"
},
"build": {
"templates": "./templates/**/*.{html,twig}",
"css": "./web/build/css/",
"images": "./web/build/images/",
"fonts": "./web/build/fonts/",
"svgs": "./web/build/icons/svg/",
"js": "./web/build/js/"
},
"craftConfig": "./config/"
},
"urls": {
"live": "https://gwendolenhouse.com",
"local": "https://gwendolenhouse.dev"
},
"devDependencies": {
"browser-sync": "^2.17.5",
"fancy-log": "^1.3.2",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-cached": "^1.1.1",
"gulp-cheerio": "^0.6.2",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.2",
"gulp-html-beautify": "^1.0.1",
"gulp-imagemin": "^3.1.1",
"gulp-load-plugins": "^1.5.0",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^7.0.1",
"gulp-purgecss": "^0.20.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-sass": "^3.1.0",
"gulp-size": "^3.0.0",
"gulp-svg-symbols": "1.0.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"tailwindcss": "^0.4.1"
}
}