-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.67 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
{
"name": "new-coyote-website",
"version": "2.0.0-alpha",
"description": "Website for New Coyote Consulting",
"scripts": {
"dev": "run-p assets:dev content:dev",
"build": "run-s all:clean all:build",
"deploy": "cross-env NODE_ENV=production run-s assets:build content:build",
"preview": "cross-env NODE_ENV=production PREVIEW_ENV=1 run-s assets:build content:dev",
"all:clean": "run-p content:clean assets:clean",
"all:build": "run-s assets:build content:build",
"all:watch": "run-p assets:watch content:watch",
"content:clean": "rimraf ./dist",
"content:build": "npx @11ty/eleventy --config=eleventy.config.js",
"content:watch": "npm run content:build -- --watch",
"content:dev": "npm run content:build -- --serve --quiet",
"content:debug": "DEBUG=Eleventy* content:build",
"assets:clean": "rimraf site/_build",
"assets:build": "webpack",
"assets:build:main": "webpack -c assets/build/webpack.config.main.js",
"assets:build:legacy": "webpack -c assets/build/webpack.config.legacy.js",
"assets:dev": "webpack --watch -c assets/build/webpack.config.main.js",
"assets:watch": "webpack --watch",
"predev": "npm run assets:build:main"
},
"author": "Ben Martinez-Bateman <[email protected]>",
"license": "ISC",
"devDependencies": {
"@11in/cloudinary": "^1.4.0",
"@11in/elf-generator-blog": "^1.1.3",
"@11in/scribe": "^1.2.1",
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.1.6",
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"core-js": "^3.8.2",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"cssnano": "^7.0.2",
"dotenv": "^8.2.0",
"file-loader": "^6.2.0",
"image-minimizer-webpack-plugin": "^1.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^11.0.0",
"luxon": "^1.28.0",
"mini-css-extract-plugin": "^1.3.3",
"netlify-plugin-cache": "^1.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.3",
"postcss-import": "^13.0.0",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"tailwindcss": "^2.2.16",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"alpinejs": "^2.8.0",
"decap-cms-app": "^3.1.10",
"decap-cms-media-library-cloudinary": "^3.0.3",
"eleventy-plugin-youtube-embed": "^1.6.6",
"js-cookie": "^3.0.1",
"markdown-it": "^10.0.0",
"markdown-it-implicit-figures": "^0.10.0"
}
}