-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.02 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.02 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "vwww",
"version": "1.0.0",
"description": "Victor's Website",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development npm run build:css && npm run watch",
"watch": "cross-env NODE_ENV=development concurrently \"rspack -w\" \"npm run serve\"",
"serve": "cd docs && npx @11ty/eleventy --serve --port=4000 --incremental --ignore-initial",
"build": "cross-env-shell NODE_ENV=production \"npm run build:css && npm run build:scripts && npm run build:final\"",
"build:dev": "cross-env-shell NODE_ENV=development \"npm run build:css && npm run build:scripts && npm run build:final || cd .\"",
"build:css": "node build_esbuild",
"build:scripts": "rspack",
"build:final": "cd docs && npx @11ty/eleventy",
"clean": "rimraf docs/pass/assets/dist docs/_data/manifest.json docs/_site",
"eslint": "eslint scripts || cd .",
"eslint:fix": "npm run eslint --fix",
"eslint:dump": "eslint --print-config ./.eslintrc.json",
"format-fix": "npm run prettier && npm run eslint:fix",
"prettier": "npm run prettier:typescript && npm run prettier:svelte",
"prettier:svelte": "prettier --write 'src/**/*.svelte'",
"prettier:typescript": "prettier --write 'src/**/*.ts'"
},
"author": "Victor",
"license": "UNLICENSED",
"type": "module",
"devDependencies": {
"@11ty/eleventy": "^3.1.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@rspack/cli": "^1.7.9",
"@rspack/core": "^1.7.9",
"@types/bootstrap": "^5.2.10",
"@types/d3": "^7.4.3",
"@types/jquery": "^3.5.34",
"@types/leaflet": "^1.9.21",
"@types/leaflet-fullscreen": "^1.0.10",
"@types/packery": "^1.4.37",
"@types/timeago": "^1.6.3",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"esbuild": "^0.27.4",
"esbuild-sass-plugin": "^3.7.0",
"eslint": "^9.39.4",
"eslint-config-love": "^151.0.0",
"eslint-plugin-frontmatter": "^0.0.8",
"eslint-plugin-html": "^8.1.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-svelte": "^3.16.0",
"fast-glob": "^3.3.3",
"markdown-it-anchor": "^9.2.0",
"prism-themes": "^1.9.0",
"prismjs": "^1.30.0",
"rimraf": "^6.1.3",
"rspack-manifest-plugin": "^5.2.1",
"sass-embedded": "^1.98.0",
"svelte-check": "^4.4.5",
"svelte-loader": "^3.2.4",
"svelte-preprocess": "^6.0.3",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.8",
"bootswatch": "^5.3.8",
"d3": "^7.9.0",
"decoders": "^2.9.1",
"firebase": "^12.11.0",
"highcharts": "^12.5.0",
"jquery": "^3.7.1",
"jssha": "^3.3.1",
"leaflet": "^1.9.4",
"leaflet-fullscreen": "^1.0.2",
"leaflet-hash": "^0.2.1",
"leaflet-minimap": "^3.6.1",
"packery": "^3.0.0",
"svelte": "^5.54.1",
"svg-pan-zoom": "^3.6.2",
"timeago": "^1.6.7"
}
}