-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.4 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.4 KB
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
{
"name": "eak-website",
"version": "2.5.4",
"description": "EAK website package definition",
"main": "index.js",
"scripts": {
"start": "npm run build:prepare && concurrently --kill-others \"npm:watch:content\" \"npm:watch:less\" \"npm:watch:ts\" \"npm:watch:eleventy\"",
"build": "npm run clean && npm run build:prepare && concurrently \"npm:build:less\" \"npm:build:ts\" && npm run build:eleventy",
"clean": "rimraf \"dist\"",
"build:prepare": "node \"build/copy.js\"",
"build:eleventy": "npx @11ty/eleventy -- --env=production",
"build:less": "lessc \"src/site.less\" \"dist/bundles/site.css\"",
"build:ts": "webpack --mode=production",
"watch:content": "node build/copy.js watch",
"watch:eleventy": "npx @11ty/eleventy --serve --incremental -- --env=development",
"watch:less": "chokidar --initial \"**/*.less\" -c \"npm run build:less\"",
"watch:ts": "webpack --watch",
"lint": "concurrently \"npm:lint:js\" \"npm:lint:css\"",
"lint:js": "eslint \"src/**/*.{ts,js}\" --max-warnings 3",
"lint:css": "stylelint \"src/**/*.less\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@exadel/esl": "^5.0.0",
"@juggle/resize-observer": "^3.4.0",
"prism-themes": "^1.9.0",
"prismjs": "^1.30.0",
"promise-polyfill": "^8.3.0",
"rss-parser": "^3.13.0",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-dev-server": "^2.0.6",
"@exadel/eslint-config-esl": "^5.0.0",
"@exadel/eslint-plugin-esl": "^5.0.0",
"@types/smoothscroll-polyfill": "^0.3.4",
"chokidar": "^4.0.3",
"chokidar-cli": "^3.0.0",
"clean-css-cli": "^5.6.3",
"concurrently": "^9.1.2",
"del": "^6.1.1",
"eslint": "^9.19.0",
"foreach-cli": "^1.8.1",
"glob": "^11.0.1",
"html-minifier-terser": "^7.2.0",
"js-yaml": "^4.1.0",
"jsdom": "^26.0.0",
"kleur": "^4.1.5",
"less": "^4.2.2",
"markdown-it-anchor": "^9.2.0",
"minimatch": "^10.0.1",
"out-url": "^1.2.2",
"postcss": "^8.5.1",
"postcss-less": "^6.0.0",
"prettier": "^3.4.2",
"replace": "^1.2.2",
"rimraf": "^6.0.1",
"stylelint": "^16.14.1",
"stylelint-prettier": "^5.0.3",
"ts-loader": "^9.5.2",
"typescript": "5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"browserslist": [
"last 3 versions",
"> 1%",
"not dead"
]
}