-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.13 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
{
"name": "fusebit-website",
"version": "1.0.0",
"description": "Fusebit marketing site",
"main": ".eleventy.js",
"scripts": {
"build:assets": "webpack --config config/webpack.config.prod.js",
"build:site": "ELEVENTY_ENV=production npx eleventy",
"del:assets": "rimraf ./src/compiled-assets",
"del:build": "rimraf ./build",
"dev": "npm run dev:assets & npm run dev:site",
"dev:assets": "webpack --config config/webpack.config.dev.js",
"dev:site": "ELEVENTY_ENV=development npx eleventy --serve --incremental",
"prod": "npm-run-all del:build del:assets build:assets build:site",
"serve:prod": "serve ./build/"
},
"author": "Litebox",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@babel/core": "7.11.6",
"@babel/preset-env": "7.11.5",
"autoprefixer": "^10.2.6",
"babel-loader": "8.1.0",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^10.0.0",
"core-js": "3.6.5",
"css-loader": "^5.2.6",
"eslint": "7.8.1",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0",
"fibers": "5.0.0",
"google-auth-library": "^7.14.0",
"googleapis": "^96.0.0",
"html-minifier": "4.0.0",
"md5-file": "5.0.0",
"mini-css-extract-plugin": "^1.6.0",
"npm-run-all": "4.1.5",
"optimize-css-assets-webpack-plugin": "^6.0.0",
"postcss-loader": "4.0.1",
"rimraf": "3.0.2",
"sass": "1.26.10",
"sass-loader": "10.0.2",
"serve": "11.3.2",
"terser-webpack-plugin": "4.1.0",
"webpack": "^5.38.1",
"webpack-cli": "3.3.12",
"webpack-merge": "5.1.3"
},
"dependencies": {
"@11ty/eleventy-img": "^0.10.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2",
"date-fns": "^2.23.0",
"dotenv": "^10.0.0",
"linkedom": "^0.11.2",
"node-fetch": "2",
"remove-markdown": "^0.5.0",
"swiper": "^6.7.1"
},
"engines": {
"node": "14.*"
}
}