-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 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
{
"scripts": {
"build": "npm run clean && npm run build:11ty && npm run build:css",
"build:11ty": "cross-env NODE_ENV=production npx @11ty/eleventy",
"build:css": "cross-env NODE_ENV=production npm run tailwind",
"clean": "rm -rf ./_site/",
"start": "npm run watch",
"tailwind": "tailwindcss build ./assets/css/main.css -o ./_site/main.css",
"test": "eslint ./**/*.js && prettier --check ./**/*.js",
"watch": "npm run clean && npm-run-all --parallel --print-label watch:*",
"watch:11ty": "cross-env NODE_ENV=development npx @11ty/eleventy --serve",
"watch:css": "cross-env NODE_ENV=development watch \"npm run tailwind\" ./assets/css/"
},
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"@heroicons/react": "^1.0.4",
"@tailwindcss/typography": "^0.2.0",
"clsx": "^1.1.1",
"cross-env": "^7.0.2",
"dotenv": "^16.0.0",
"htm": "^3.1.0",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.1.2",
"markdown-it-attrs": "^3.0.3",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-link-attributes": "^3.0.0",
"node-fetch": "^2.6.7",
"preact": "^10.5.14",
"preact-render-to-string": "^5.1.19",
"prismjs": "^1.27.0",
"react": "^17.0.2",
"slugify": "^1.4.6",
"tailwindcss": "^1.9.6",
"tailwindcss-important": "^1.0.0"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"npm-run-all": "^4.1.5",
"prettier": "2.2.0",
"tailwindcss-debug-screens": "^1.1.0",
"watch": "^1.0.2"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}