-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 3.05 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "website",
"version": "2.5.0",
"description": "It's (j)ust (e)leventy and (t)ailwind … OK, and a few other things; it's still *really* small though.",
"scripts": {
"clean": "rimraf public src/css/styles.css",
"dev": "NODE_ENV=development webpack --mode development && ELEVENTY_ENV=development eleventy --serve",
"live": "NODE_ENV=production webpack --mode production ",
"start": " ELEVENTY_ENV=development eleventy --serve",
"format": "prettier --write .",
"css": "NODE_ENV=production webpack --mode production ",
"build": " NODE_ENV=production webpack --mode production && ELEVENTY_ENV=production eleventy",
"lint": "eslint --ignore-path .gitignore --fix --ext .js,.vue .",
"alts": "node alt.js",
"link": "node link.js",
"a11y": "eslint src/**/*.html --ignore-path .gitignore --fix && eslint src/**/*.liquid --ignore-path .gitignore --fix && eslint src/**/*.js --ignore-path .gitignore --fix "
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/marcamos/jet.git"
},
"keywords": [
"eleventy",
"11ty",
"tailwind",
"tailwindcss"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/marcamos/jet/issues"
},
"homepage": "https://github.com/marcamos/jet#readme",
"resolutions": {
"babel-jest": "^21.2.0",
"babel-plugin-jest-hoist": "^21.2.0",
"babel-preset-jest": "^21.2.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/line-clamp": "^0.3.1",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"css-loader": "^6.9.1",
"cssnano": "^5.1.15",
"daisyui": "^4.11.1",
"date-fns": "^2.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^9.9.0",
"html-inline-css-webpack-plugin": "^1.11.1",
"html-webpack-plugin": "^5.3.2",
"postcss": "^8.4.21",
"postcss-loader": "^4.1.0",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.7",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"workbox-webpack-plugin": "^7.1.0"
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:vue/essential",
"plugin:prettier/recommended",
"eslint:recommended"
],
"env": {
"browser": true,
"jest": true,
"node": true
},
"globals": {
"chrome": true
},
"rules": {
"eol-last": 0,
"quotes": [
2,
"single"
]
}
},
"dependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@fullhuman/postcss-purgecss": "^4.0.0",
"@tailwindcss/typography": "^0.5.9",
"@toycode/markdown-it-class": "^1.2.4",
"canvas": "^2.11.0",
"cheerio": "^1.0.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"eleventy-plugin-pwa-v2": "^1.0.2",
"eleventy-plugin-svg-contents": "^0.7.0",
"html-minifier": "^4.0.0",
"lodash": "^4.17.21",
"markdown-it": "^12.2.0",
"markdown-it-anchor": "^9.0.1",
"mini-css-extract-plugin": "^2.7.2",
"moment": "^2.30.1",
"postcss-loader": "^4.1.0",
"typewriter-effect": "^2.19.0",
"vue": "^2.7.14"
}
}