-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 805 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "harvard-lil",
"version": "1.0.0",
"description": "Harvard Library Innovation Lab Website",
"type": "module",
"scripts": {
"css:build": "tailwindcss -i app/assets/css/main.css -o build/assets/css/main.css",
"css:watch": "tailwindcss -i app/assets/css/main.css -o build/assets/css/main.css --watch",
"start": "npm run css:build && concurrently \"npm run css:watch\" \"eleventy --serve\"",
"build": "npm run css:build && eleventy"
},
"author": "Harvard Library Innovation Lab",
"license": "ISC",
"homepage": "https://github.com/harvard-lil/website-static",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"autoprefixer": "^10.4.27",
"concurrently": "^9.1.0",
"js-yaml": "^4.1.1",
"markdown-it": "^14.1.0",
"tailwindcss": "^3.4.3"
}
}