-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.21 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
{
"name": "bazant.dev",
"private": true,
"version": "0.1.0",
"description": "",
"scripts": {
"clean": "rm -rf ./_site",
"test": "jest",
"lint": "tsc --noEmit && eslint 'src/**/*.ts'",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"build:webpack": "webpack --mode production",
"build:sass": "sass --style=compressed src/css/main.scss _site/css/main.css --no-source-map --stop-on-error",
"build": "npm-run-all clean --parallel build:*",
"serve:eleventy": "ELEVENTY_ENV=development eleventy --serve",
"serve:webpack": "webpack --mode development --devtool source-map --watch",
"serve:sass": "sass --style=compressed src/css/main.scss _site/css/main.css --source-map --watch --no-stop-on-error",
"serve": "npm-run-all clean --parallel serve:*",
"debug": "DEBUG=* eleventy",
"php:server": "php -S localhost:8000 -t '_site/'",
"prepare": "husky"
},
"author": "Jiri Bazant ([email protected])",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@types/jest": "^29.5.14",
"@types/service-worker-mock": "^2.0.1",
"@types/stats.js": "^0.17.0",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eleventy-plugin-lazyimages": "^2.1.2",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"nock": "^13.5.6",
"node-fetch": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.1",
"sass": "^1.81.0",
"service-worker-mock": "^2.0.5",
"stats.js": "^0.17.0",
"terser-webpack-plugin": "^5.3.1",
"three": "^0.139.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-shader-loader": "^1.0.6",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"lint-staged": {
"*.(js|ts)": [
"eslint --fix"
],
"**/*.+(js|ts|json|css)": [
"prettier --write"
]
}
}