-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.54 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.54 KB
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
{
"name": "docs",
"version": "1.9.2-alpha",
"description": "Docs for Elfin and other 11in packages.",
"homepage": "https://elfin.netlify.app",
"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",
"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 <ben@alwaysblank.org>",
"repository": {
"type": "git",
"url": "https://github.com/11in/docs.git"
},
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-navigation": "^0.1.6",
"@babel/core": "^7.12.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.7",
"babel-loader": "^8.2.1",
"core-js": "^3.7.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"cssnano": "^4.1.10",
"file-loader": "^6.2.0",
"image-minimizer-webpack-plugin": "^1.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^8.0.0",
"luxon": "^1.25.0",
"mini-css-extract-plugin": "^1.3.1",
"netlify-plugin-cache": "^1.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.10",
"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",
"webpack": "^5",
"webpack-cli": "^4",
"webpack-dev-server": "^3.11.0",
"@11in/cloudinary": "^1.3.3",
"@11in/elf-generator-blog": "^1.0.0",
"dotenv": "^8.2.0"
},
"dependencies": {
"@11in/scribe": "^1.2.1",
"@tailwindcss/typography": "^0.3.1",
"fuse.js": "^6.4.3",
"markdown-it-emoji": "^2.0.0",
"striptags": "^3.1.1",
"tippy.js": "^6.2.7"
}
}