-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 852 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
28
29
30
31
{
"name": "eleventy-example-airtable-data",
"version": "0.0.1",
"description": "An example of sourcing data from Airtable for use in Eleventy at build time",
"author": "RichClicks",
"license": "MIT",
"scripts": {
"start": "npm run dev",
"dev": "cross-env ELEVENTY_ENV=dev eleventy --serve",
"build": "cross-env ELEVENTY_ENV=prod eleventy",
"seed": "cross-env ELEVENTY_ENV=seed eleventy"
},
"repository": {
"type": "git",
"url": "https://github.com/richclicks/richclicks-signatures"
},
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"airtable": "^0.11.1",
"autoprefixer": "^9.6.0",
"axios": "^0.23.0",
"cssnano": "^5.0.8",
"dotenv": "^10.0.0",
"fetch": "^1.1.0",
"html-minifier": "^4.0.0",
"node-fetch": "^3.0.0"
},
"devDependencies": {
"cross-env": "^5.2.0"
}
}