-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"scripts": {
"_anchor": "node --require=esm scripts/anchor.js",
"anchor": "npm run --silent _anchor > anchor.html",
"build": "npm run clean && cross-env NODE_ENV=production node --require=esm ./node_modules/\\@11ty/eleventy/cmd.js",
"clean": "rm -rf ./_site/",
"eslint": "eslint ./**/*.js",
"eslint-fix": "eslint ./**/*.js --fix",
"prettier": "prettier --check ./**/*.{js,md}",
"start": "npm run clean && cross-env NODE_ENV=development node --require=esm ./node_modules/\\@11ty/eleventy/cmd.js --serve"
},
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"@heroicons/react": "^1.0.1",
"@twind/content": "^0.1.0",
"@twind/typography": "^0.0.2",
"cross-env": "^7.0.3",
"dedent": "^0.7.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^33.0.1",
"esm": "^3.2.25",
"gray-matter": "^4.0.3",
"htm": "^3.0.4",
"markdown-it": "^10.0.0",
"preact": "^10.5.13",
"preact-render-to-string": "^5.1.19",
"prettier": "2.3.2",
"react": "^17.0.2",
"twind": "^0.16.16"
},
"devDependencies": {
"@types/eslint": "^7.2.13"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}