-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 939 Bytes
/
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
{
"name": "devycycle-directus-demo",
"description": "Demo showcase the integration of Ghost, DevCycle, Directus, Netlify and Eleventy",
"scripts": {
"serve": "rm -rf _site && npx @11ty/eleventy --serve --quiet & npx tailwindcss -i ./src/tailwind.css -o ./_site/styles.css --watch",
"build": "rm -rf _site && ELEVENTY_ENV=production npx @11ty/eleventy && npx tailwindcss -i ./src/tailwind.css -o ./_site/styles.css --minify",
"dev": "netlify dev"
},
"keywords": [],
"author": "Andrew MacLean",
"license": "MIT",
"browserslist": "defaults, not ie <= 11",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"netlify-cli": "^6.14.7",
"tailwindcss": "^3.3.5"
},
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.0",
"@devcycle/nodejs-server-sdk": "^1.18.4",
"axios": "^1.6.2",
"cookie": "^0.4.1",
"dotenv": "^16.3.1",
"node-fetch": "^2.3.0",
"simple-oauth2": "^4.2.0"
}
}