-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.61 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
42
43
44
45
{
"name": "everyday-concepts",
"version": "2.0.0",
"description": "A re-write of Everyday Concepts using 11ty.",
"scripts": {
"start": "npm run serve",
"watch": "concurrently -c auto npm:css:watch npm:11ty:watch",
"serve": "concurrently -c auto npm:css:watch npm:11ty:serve",
"build": "npm run css:build && npm run 11ty:build",
"debug": "cross-env DEBUG=Eleventy* npm run build",
"11ty:watch": "cross-env NODE_ENV=development eleventy --watch --incremental",
"11ty:serve": "cross-env NODE_ENV=development eleventy --serve --incremental",
"11ty:build": "cross-env NODE_ENV=production eleventy",
"css:watch": "tailwindcss -i src/assets/css/main.css -o dist/assets/css/main.css -w",
"css:build": "tailwindcss -i src/assets/css/main.css -o dist/assets/css/main.css -m"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielkrieshok/everydayconcepts.git"
},
"author": "Gabriel Krieshok",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabrielkrieshok/everydayconcepts/issues"
},
"homepage": "https://github.com/gabrielkrieshok/everydayconcepts#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@tailwindcss/typography": "^0.5.9",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"html-minifier": "^4.0.0",
"tailwindcss": "^3.2.4",
"terser": "^5.16.1"
},
"dependencies": {
"@11ty/eleventy-cache-assets": "^2.3.0",
"@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-plugin-webc": "^0.11.1",
"airtable": "^0.11.6",
"dotenv": "^16.0.3",
"markdown-it": "^13.0.1"
}
}