-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "teatime-starter",
"version": "0.0.1",
"description": "TEAtime Starter",
"repository": {
"type": "git",
"url": "https://github.com/alanmosely/teatime-starter"
},
"scripts": {
"clean": "del-cli public",
"serve": "cross-env ELEVENTY_ENV=dev npx eleventy --serve",
"start": "npm run serve",
"prebuild": "npm run clean",
"build": "cross-env ELEVENTY_ENV=dev npx eleventy",
"build:prod": "npx eleventy",
"predeploy": "npm run build:prod",
"deploy": "npx firebase deploy",
"debug": "cross-env DEBUG=* npx eleventy"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-img": "^1.0.0",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"alpinejs": "^3.7.0",
"autoprefixer": "^10.2.5",
"cross-env": "^7.0.3",
"cssnano": "^5.0.14",
"del-cli": "^3.0.0",
"eleventy-favicon": "^1.1.2",
"firebase-tools": "^10.0.1",
"html-minifier": "^4.0.0",
"markdown-it": "^12.3.2",
"markdown-it-attrs": "^4.1.3",
"markdown-it-emoji": "^2.0.2",
"postcss": "^8.2.9",
"postcss-import": "^14.0.0",
"tailwindcss": "^3.0.0"
}
}