-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.37 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
{
"name": "rooms-with-love-website",
"version": "1.0.0",
"description": "Website for a northern KY nonprofit, Rooms With Love",
"main": "index.js",
"engines": {
"node": "16.3.0"
},
"scripts": {
"build": "npm-run-all clean build:11ty build:tailwind",
"build:11ty": "eleventy",
"build:tailwind": "tailwindcss -i ./_style/main.pcss -o ./_site/style/main.css",
"build:production": "NODE_ENV=production npm-run-all clean \"build:11ty\" \"build:tailwind -- --minify\"",
"clean": "rimraf _site",
"deploy": "npm run build:production; gh-pages -d _site",
"start": "npm run watch",
"watch": "DEBUG=Eleventy:* npm-run-all clean build:11ty -p watch:11ty watch:tailwind",
"watch:11ty": "eleventy --serve",
"watch:tailwind": "tailwindcss -i ./_style/main.pcss -o ./_site/style/main.css --watch",
"netlify:functions": "netlify functions:serve",
"netlify:dev": "netlify dev"
},
"author": "ncksllvn",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@tailwindcss/typography": "^0.4.1",
"gh-pages": "^3.2.3",
"netlify-cli": "^9.13.5",
"npm-run-all": "^4.1.5",
"rimraf": "^2.7.1",
"tailwindcss": "^2.2.7"
},
"dependencies": {
"@sentry/node": "^7.36.0",
"@sentry/tracing": "^7.37.1",
"busboy": "^1.6.0",
"nodemailer": "^6.7.5",
"nodemailer-mailgun-transport": "^2.1.3"
}
}