-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.12 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "frontend-boilerplate",
"description": "",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git@github.com:Jaywing/frontend-boilerplate.git"
},
"keywords": [
"gulp 4",
"nunjucks",
"webpack",
"typescript",
"react"
],
"author": "joe.diton@jaywing.com",
"license": "ISC",
"homepage": "https://github.com/Jaywing/frontend-boilerplate",
"main": "gulpfile.js",
"paths": {
"staticDir": "./static/",
"proxyUrl": "https://",
"css": {
"src": "./src/scss/**/",
"staticDest": "./static/assets/css/",
"proxyDest": "./Umbraco/assets/css/"
},
"fonts": {
"src": [
"./src/fonts/**/*.+(ttf|otf|woff|woff2|eot|svg)"
],
"staticDest": "./static/assets/fonts/",
"proxyDest": "./Umbraco/assets/fonts/"
},
"html": {
"staticSrc": "./src/html/**/",
"staticData": "src/html/data.json",
"staticDest": "./static/",
"proxyWatch": "./Umbraco/**/*.cshtml"
},
"images": {
"src": "./src/images/**/*.+(png|jpg|jpeg|gif|svg)",
"staticDest": "./static/assets/images/",
"proxyDest": "./Umbraco/assets/images/"
},
"js": {
"src": "./src/ts/**/",
"webpackEntry": {
"main": "./src/ts/main.ts"
},
"webpackOutput": {
"path": "static/assets",
"publicPath": "/assets/"
},
"staticDest": "./static/assets/",
"proxyDest": "./Umbraco/assets/"
}
},
"prettier": {
"tabWidth": 2
},
"browserslist": [
"> 1%",
"not dead"
],
"browserSync": {
"open": false
},
"scripts": {
"start": "gulp --combinemq --sourcemaps --max-old-space-size=8192",
"build": "gulp build --combinemq --purge --minify",
"prettier": "prettier --write \"./src/**/*.{scss,ts,tsx,js,jsx,json}\""
},
"devDependencies": {
"@types/react": "^16.9.46",
"autoprefixer": "^10.4.2",
"browser-sync": "^2.27.7",
"cssnano": "^5.0.15",
"dotenv": "^14.2.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "7.1.0",
"gulp-nunjucks": "^5.1.0",
"gulp-postcss": "^9.0.1",
"gulp-purgecss": "^4.1.3",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"imagemin-webp": "6.0.0",
"minimist": "^1.2.6",
"postcss": "^8.4.5",
"postcss-combine-media-query": "^1.0.1",
"postcss-easy-import": "^3.0.0",
"postcss-nested": "^5.0.6",
"prettier": "^2.5.1",
"purgecss": "^4.1.3",
"remove": "^0.1.5",
"sass": "^1.48.0",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-config-tailwindcss": "^0.0.3",
"ts-loader": "^9.2.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^5.0.0",
"typescript": "^4.8.4",
"webpack": "^5.66.0",
"webpack-stream": "^7.0.0"
},
"dependencies": {
"tailwindcss": "^3.0.15",
"vanilla-lazyload": "^17.5.0"
}
}