-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
161 lines (161 loc) · 4.65 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "zed-news",
"version": "0.9.0",
"description": "news podcast on auto-pilot",
"author": "Victor Miti <https://github.com/engineervix>",
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"build:dev:webpack": "webpack --mode development --progress",
"build:prod:webpack": "webpack --mode production",
"build:prod:eleventy": "npx @11ty/eleventy",
"build": "cross-env ELEVENTY_ENV=production npm-run-all -l clean build:prod:*",
"clean": "rimraf ./public",
"commit": "git-cz",
"css-fix": "npx stylelint app/web/css/ --fix",
"debug": "cross-env DEBUG=Eleventy* npx @11ty/eleventy",
"lint:format": "prettier --check 'app/**/?(.)*.{md,css,scss,js,json,yaml,yml}'",
"lint:js": "eslint --ext \".js\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{scss,css}\" --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style",
"release": "standard-version",
"start:webpack": "webpack --mode development --progress --watch",
"start:eleventy": "npx @11ty/eleventy --serve",
"start": "cross-env ELEVENTY_ENV=development npm-run-all -l clean --parallel start:*"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"@popperjs/core": "^2.11.8",
"aos": "^2.3.4",
"bootstrap": "^5.3.0",
"elasticlunr-dev": "^0.9.6",
"plyr": "^3.7.8",
"sharer.js": "^0.5.1",
"timeago.js": "^4.0.2",
"ua-parser-js": "^1.0.35"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-env": "^7.22.2",
"babel-loader": "^9.1.2",
"commitizen": "^4.3.0",
"core-js": "^3.30.2",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"cssnano": "^6.0.1",
"cz-conventional-changelog": "^3.3.0",
"date-fns": "^2.30.0",
"del": "^7.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"he": "^1.2.0",
"mini-css-extract-plugin": "^2.7.6",
"mustache": "^4.2.0",
"node-sass": "^9.0.0",
"npm-run-all2": "^5.0.0",
"postcss": "^8.4.24",
"postcss-custom-properties": "^13.1.5",
"postcss-loader": "^7.3.2",
"postcss-preset-env": "^8.4.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"sass": "^1.62.1",
"sass-loader": "^13.3.1",
"standard-version": "^9.5.0",
"stylelint": "^15.6.2",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-webpack-plugin": "^4.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.84.1",
"webpack-cli": "^5.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"stylelint": {
"extends": [
"stylelint-config-standard-scss"
],
"ignoreFiles": [
"**/public/**/*.*"
]
},
"browserslist": [
"defaults",
"cover 99.5%",
"not ie < 8"
],
"standard-version": {
"header": "# Changelog\n\nAll notable changes to this project will be documented here.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project attempts to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n",
"types": [
{
"type": "feat",
"section": "🚀 Features"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "docs",
"section": "📝 Docs",
"hidden": false
},
{
"type": "style",
"section": "💄 Styling",
"hidden": false
},
{
"type": "refactor",
"hidden": false,
"section": "♻️ Code Refactoring"
},
{
"type": "perf",
"section": "⚡️ Performance Improvements",
"hidden": false
},
{
"type": "test",
"section": "✅ Tests",
"hidden": false
},
{
"type": "build",
"section": "⚙️ Build System",
"hidden": false
},
{
"type": "ci",
"section": "👷 CI/CD",
"hidden": false
},
{
"type": "chore",
"section": "🚧 Others",
"hidden": true
},
{
"type": "revert",
"section": "⏪️ Reverts",
"hidden": true
}
],
"scripts": {
"prechangelog": "sed -e '1,6d' -i CHANGELOG.md",
"postchangelog": "sed -e 's/###\\ \\[/##\\ \\[v/g' -i CHANGELOG.md && sed -re 's/##\\ \\[([0-9])/##\\ \\[v\\1/g' -i CHANGELOG.md"
}
}
}