-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.33 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.33 KB
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
{
"name": "dropbears-website",
"version": "1.0.0",
"description": "Website for The Drop Bears (FRC Team 4774) built with 11ty",
"scripts": {
"start": "npm-run-all --parallel css eleventy browsersync",
"eleventy": "eleventy --watch",
"debug": "set DEBUG=* & eleventy",
"css": "postcss src/static/css/tailwind.css --o _site/static/css/style.css --watch",
"build": "cross-env NODE_ENV=production eleventy && cross-env NODE_ENV=production tailwindcss -i src/static/css/tailwind.css -o _site/static/css/style.css",
"browsersync": "browser-sync start --config bs-config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/thedropbears/team-website"
},
"author": "The Drop Bears",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.3",
"@tailwindcss/typography": "^0.5.0",
"alpinejs": "^3.7.1",
"browser-sync": "^3.0.4",
"cross-env": "^7.0.3",
"cssnano": "^5.0.15",
"html-minifier": "^4.0.0",
"js-yaml": "^4.1.0",
"luxon": "^2.3.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^9.1.0",
"prismjs": "^1.26.0",
"tailwindcss": "^3.0.13"
},
"dependencies": {
"@phosphor-icons/web": "^2.1.2",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.5"
}
}