-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.56 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
74
75
76
77
{
"name": "patrickxchong.com",
"version": "1.0.0",
"description": "Patrick Chong's Personal Site",
"author": "Patrick Chong",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrickxchong/patrickxchong.com/issues"
},
"homepage": "https://github.com/patrickxchong/patrickxchong.com",
"repository": {
"type": "git",
"url": "https://github.com/patrickxchong/patrickxchong.com.git"
},
"keywords": [
"11ty",
"TailwindCSS",
"TailwindUI",
"Alpine.js",
"webpack",
"PostCSS",
"CSSnano"
],
"scripts": {
"clean": "rimraf dist",
"_dev:webpack": "webpack --mode development",
"_build:webpack": "cross-env NODE_ENV=production webpack --mode production",
"debug:eleventy": "cross-env DEBUG=Eleventy* NODE_ENV=development eleventy --serve --incremental",
"dev:eleventy": "cross-env NODE_ENV=development eleventy --serve --incremental",
"dev:postcss": "postcss src/assets/css/**/[^_]*.scss --dir dist/assets/css --ext css --watch --verbose",
"dev:netlifycms": "decap-server",
"dev": "npm-run-all clean --parallel dev:* --print-label",
"build:eleventy": "cross-env NODE_ENV=production eleventy",
"build:postcss": "cross-env NODE_ENV=production postcss src/assets/css/**/[^_]*.scss --dir dist/assets/css --ext css",
"build": "run-s clean build:postcss build:eleventy --print-label"
},
"dependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-cache-assets": "^2.3.0",
"@11ty/eleventy-img": "^0.10.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.6",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"alpinejs": "^2.8.0",
"autoprefixer": "^10.3.2",
"axios": "^0.21.3",
"babel-loader": "^8.2.2",
"clean-css": "^4.2.3",
"cross-env": "^7.0.3",
"cssnano": "^5.0.8",
"dotenv": "^8.2.0",
"eleventy-plugin-svg-sprite": "^1.2.2",
"exifr": "^7.1.3",
"html-minifier": "^4.0.0",
"linkedom": "^0.11.2",
"luxon": "^1.25.0",
"markdown-it": "^11.0.1",
"markdown-it-anchor": "^8.1.3",
"markdown-it-emoji": "^1.4.0",
"markdown-it-link-attributes": "^3.0.0",
"markdown-it-toc-done-right": "^4.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.0",
"postcss-import": "^14.0.2",
"postcss-scss": "^4.0.9",
"rimraf": "^3.0.2",
"sass": "^1.69.5",
"slugify": "^1.4.6",
"tailwindcss": "^2.2.7",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}