-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 783 Bytes
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
{
"name": "simc-site",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "run-p dev:*",
"build": "run-s build:*",
"dev:11ty": "eleventy --serve",
"dev:css": "tailwindcss -i src/assets/css/style.css -o _site/assets/css/style.css -w",
"build:11ty": "eleventy",
"build:css": "tailwindcss -i src/assets/css/style.css -o _site/assets/css/style.css --minify"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"dotenv": "^16.3.1",
"markdown-it": "^13.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.1.8"
},
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.0",
"katex": "^0.16.8"
}
}