-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "11ty-notes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently 'npm run serve' 'npm run css:watch'",
"serve": "npx @11ty/eleventy --serve --incremental",
"serve:debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
"prebuild": "npm run clean",
"build": "npx @11ty/eleventy && npm run css",
"test": "echo \"Error: no test specified\" && exit 1",
"css": "postcss src/css/index.css --o _site/css/index.css",
"css:watch": "watch 'npm run css' src",
"clean": "rimraf _site"
},
"keywords": [],
"author": "Zander Martineau",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@11ty/eleventy-upgrade-help": "^2.0.5",
"@alexcarpenter/slugify": "^1.0.6",
"@netlify/functions": "^1.4.0",
"@tailwindcss/typography": "^0.5.8",
"@types/markdown-it": "^12.2.3",
"@types/react": "^18.0.26",
"algoliasearch": "^4.14.3",
"autoprefixer": "^10.4.13",
"color-hash": "^2.0.2",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"eleventy-plugin-heroicons": "^1.1.0",
"eleventy-plugin-json-feed": "^0.0.7",
"eleventy-plugin-nesting-toc": "^1.3.0",
"lodash": "^4.17.21",
"luxon": "^3.1.1",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.6",
"markdown-it-copy": "^1.2.0",
"node-fetch": "^2.6.9",
"postcss": "^8.4.19",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"postcss-import-ext-glob": "^2.1.1",
"rimraf": "^4.1.2",
"tailwindcss": "^3.2.6",
"watch": "^1.0.2"
}
}