1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Update tasks - remove gulp (replaced by node scripts, working with mconfig) + esbuild (no more es5 support) + add critical css in config file

This commit is contained in:
Quentin Hocdé
2020-11-27 16:01:54 -05:00
parent e686689b52
commit 2e7bb3b482
24 changed files with 7076 additions and 97 deletions

View File

@@ -3,20 +3,25 @@
"name": "@locomotivemtl/boilerplate",
"title": "Locomotive Boilerplate",
"version": "1.0.0",
"type": "module",
"author": "Locomotive <info@locomotive.ca>",
"scripts": {
"start": "gulp",
"build": "gulp build",
"compile": "gulp compile"
"start": "node --experimental-json-modules build/watch.js",
"build": "node --experimental-json-modules build/build.js"
},
"dependencies": {
"locomotive-scroll": "*",
"modujs": "*",
"modularload": "*",
"modujs": "^1.4.2",
"modularload": "^1.2.6",
"normalize.css": "*",
"svg4everybody": "*"
},
"devDependencies": {
"gulp-concat": "*"
"browser-sync": "^2.26.13",
"concat": "^1.0.3",
"esbuild": "^0.8.16",
"fs": "0.0.1-security",
"node-sass": "^5.0.0",
"svg-mixer": "^2.3.14"
}
}