-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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": "11ty-tailwind-jit-starter",
"version": "0.0.3",
"description": "An 11ty starter to help you enjoy Tailwind Just-In-Time CSS",
"author": {
"name": "Katie Kodes",
"url": "https://katiekodes.com"
},
"contributors": [
{
"name": "Darrik Moberg",
"url": "https://www.darrik.dev/"
},
{
"name": "Mike Allanson",
"url": "https://www.mikeallanson.com/"
}
],
"main": ".eleventy.js",
"repository": {
"type": "git",
"url": "https://github.com/kkgthb/11ty-tailwind-jit.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production npx eleventy",
"dev": "cross-env NODE_ENV=development npx eleventy --watch --serve",
"develop": "cross-env NODE_ENV=development npx eleventy --watch --serve",
"now-build": "cross-env NODE_ENV=production npm run build",
"debug": "DEBUG=* npx eleventy"
},
"dependencies": {
"@11ty/eleventy": "latest",
"@tailwindcss/jit": "latest",
"autoprefixer": "latest",
"cross-env": "latest",
"postcss": "latest",
"postcss-cli": "latest",
"tailwindcss": "latest"
}
}