-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.09 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.09 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
{
"author": "Dominik Downarowicz",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@hotwired/turbo": "^8.0.23",
"anchor-js": "^5.0.0",
"bootstrap": "^5.3.8",
"fastest-levenshtein": "^1.0.16",
"simple-jekyll-search": "^1.10.0"
},
"description": "Dominik Downarowicz Blog",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@fortawesome/fontawesome-common-types": "^7.1.0",
"@types/anchor-js": "^5.0.0",
"@types/bootstrap": "^5.2.6",
"@types/node": "^25.5.0",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.58.0",
"@typescript-eslint/utils": "^8.56.1",
"autoprefixer": "^10.4.27",
"babel-loader": "^10.1.1",
"babel-preset-env": "^1.7.0",
"css-loader": "^7.1.4",
"eslint": "^10.1.0",
"eslint-plugin-import": "^2.32.0",
"file-loader": "^6.2.0",
"jsonlint": "^1.6.3",
"mini-css-extract-plugin": "^2.10.2",
"npm-check-updates": "^20.0.0",
"postcss-loader": "^8.2.1",
"precss": "^4.0.0",
"prettier": "3.8.1",
"sass": "^1.98.0",
"sass-loader": "^16.0.6",
"source-map-loader": "^5.0.0",
"standard": "^17.1.2",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"typescript": "^6.0.2",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1"
},
"homepage": "https://github.com/downarowiczd/downarowiczd.github.io#readme",
"license": "MIT",
"main": "script/server",
"name": "downarowiczd.github.io",
"repository": {
"type": "git",
"url": "git+https://github.com/downarowiczd/downarowiczd.github.io.git"
},
"scripts": {
"build": "npm run lint && npm run webpack",
"lint": "npm run lint-js && npm run lint-json",
"lint-js": "eslint ./ --fix",
"lint-json": "jsonlint package.json --in-place --sort-keys",
"test": "script/cibuild",
"webpack": "webpack"
},
"version": "1.0.0",
"xo": {
"esnext": false,
"space": true
}
}