generated from 11ty/eleventy-base-blog
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.8 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
{
"name": "tldreact-dev",
"version": "1.0.0",
"description": "To the point snippets to do one thing in react",
"scripts": {
"clean": "rm -rf _site",
"start": "npm-run-all clean --parallel dev:*",
"dev:postcss": "postcss css/style.css -o _site/css/index.css --config ./postcss.config.js -w",
"dev:eleventy": "ELEVENTY_ENV=development eleventy --watch --serve",
"build": "NODE_ENV=production npm-run-all clean --parallel prod:*",
"prod:postcss": "postcss css/style.css -o _site/css/index.css --config ./postcss.config.js",
"prod:eleventy": "ELEVENTY_ENV=production eleventy",
"postbuild": "node ./scripts/update-algolia-index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/Khaledgarbaya/tldreact.dev.git"
},
"author": {
"name": "Khaled Garbaya",
"email": "[email protected]",
"url": "https://khaledgarbaya.net"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Khaledgarbaya/tldreact.dev/issues"
},
"homepage": "https://github.com/Khaledgarbaya/tldreact.dev#readme",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-rss": "^1.0.9",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@tailwindcss/typography": "^0.2.0",
"autoprefixer": "^10.0.4",
"luxon": "^1.21.3",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.2.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.10",
"postcss-cli": "^8.3.0",
"postcss-css-variables": "^0.17.0",
"postcss-nesting": "^7.0.1",
"postcss-partial-import": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^1.9.6"
},
"dependencies": {
"algolia-indexing": "^1.1.1",
"node-fetch": "^2.6.1",
"postcss-clean": "^1.1.0",
"postcss-import": "^13.0.0"
}
}