-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.73 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.73 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
{
"name": "ff-eisolzried",
"version": "0.0.1",
"description": "homepage of eisolzried fire department",
"sideEffects": false,
"scripts": {
"start": "npm run js:dev && npm run sass:dev && npm run icons && npm run jekyll:dev",
"build": "npm run js:prod && npm run sass:prod && npm run icons && npm run jekyll:prod && npm run purge",
"icons": "svg-sprite --config sprite.json --dest _site/assets _assets/icons/**/*.svg",
"jekyll:dev": "bundle exec jekyll serve",
"jekyll:prod": "bundle exec jekyll build",
"js:dev": "webpack --config webpack.dev.js",
"js:prod": "webpack --config webpack.prod.js",
"sass:dev": "sass --update --style=expanded _assets/styles:_site/assets/css",
"sass:prod": "sass --no-source-map --style=compressed _assets/styles:_site/assets/css",
"purge": "purgecss --css _site/assets/css/main.css --content _site/**/*.html _site/assets/js/*.js --output _site/assets/css/ --safelist carousel modal pagination page-item page-link",
"test": "standard",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/midzer/eisolzried"
},
"author": "@midzer",
"license": "MIT",
"browserslist": [
"> 1% in DE",
"Firefox ESR",
"not IE 11"
],
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@babel/register": "^7.28.6",
"babel-loader": "^10.0.0",
"purgecss": "^8.0.0",
"sass": "^1.97.3",
"standard": "^17.1.2",
"svg-sprite": "^2.0.4",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@joeattardi/emoji-button": "^4.6.4",
"@midzer/tobii": "^3.1.2",
"bootstrap": "^5.3.8",
"frappe-charts": "^1.6.2",
"ical.js": "^2.2.1"
}
}