-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.48 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
46
47
48
49
50
51
{
"name": "linkist",
"version": "1.0.0",
"description": "Simple, highly configurable alternative to Linktr.ee and LinkIn.bio 11ty and TailwindCSS",
"main": "src/index.html",
"scripts": {
"clean": "rimraf dist",
"dev:eleventy": "eleventy --serve",
"dev:tail": "postcss src/assets/css/tailwind.css -o dist/assets/css/tailwind.css --watch",
"dev": "run-p dev:* --print-label",
"build:eleventy": "eleventy",
"build:tail": "postcss src/assets/css/tailwind.css -o dist/assets/css/tailwind.css",
"build": "NODE_ENV=production run-s build:* --print-label",
"test:serve": "live-server dist",
"test": "run-s build:eleventy build:tail test:serve --print-label"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shanerobinson/linkist.git"
},
"keywords": [
"alpinejs",
"11ty",
"eleventy",
"autoprefixer",
"npm-run-all",
"postcss-cli",
"tailwindcss"
],
"author": "Shane Robinson",
"license": "MIT",
"bugs": {
"url": "https://github.com/shanerobinson/linkist/issues"
},
"homepage": "https://github.com/shanerobinson/linkist#readme",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"autoprefixer": "^10.2.1",
"cssnano": "^4.1.10",
"html-minifier": "^4.0.0",
"live-server": "^1.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^8.3.1",
"rimraf": "^3.0.2",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"@11ty/eleventy-navigation": "^0.1.6"
}
}