-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.36 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
{
"name": "film-finder",
"version": "2023.09.28-19.36.38",
"license": "UNLICENSED",
"homepage": "https://codepen.io/Nalini1998/pen/poqJPZV/39d0961218863e878b429f0f0f1e2b3c",
"scripts": {
"build": "gulp -f ./build/gulpfile.js --cwd ./ --continue",
"serve": "gulp serve -f ./build/gulpfile.js --cwd ./ --continue",
"task": "gulp -f ./build/gulpfile.js --cwd ./ --continue",
"tasks": "gulp --tasks-simple -f ./build/gulpfile.js --cwd ./ --continue"
},
"config": {
"srcDir": "src/",
"distDir": "dist/"
},
"devDependencies": {
"browser-sync": "^2.26.7",
"del": "^4.1.1",
"glob": "^7.1.4",
"gulp-inject-partials": "^1.0.5",
"gulp-rename": "^1.4.0",
"gulp": "^4.0.2",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack": "^4.29.6"
},
"browserslist": [
"last 5 version"
],
"tasks": {
"partials": {
"order": 999,
"src": [
"**/*.template.html"
],
"pipe": [
{
"require": "gulp-inject-partials",
"args": [
{
"removeTags": true,
"quiet": true,
"ignoreError": true
}
]
}
],
"rename": {
"find": ".template",
"replace": ""
},
"cleanup": [
"**/*.partial.html",
"**/*.template.html"
]
}
}
}