-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "daylight-web",
"author": "Bakken & Bæck",
"description": "Daylight is a simple app that tells you about daylight changes and notifies you when the days are getting longer.",
"version": "2.1.0",
"license": "MIT",
"private": true,
"scripts": {
"start": "ELEVENTY_ENV=development npm-run-all --parallel start:*",
"start:webpack": "webpack --watch ",
"start:eleventy": "eleventy --watch --serve",
"build": "NODE_OPTIONS=--openssl-legacy-provider ELEVENTY_ENV=production webpack && eleventy"
},
"dependencies": {
"idb": "^2.0.0",
"postcss": "^8.2.12",
"suncalc": "^1.7.0"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"core-js": "^3.8.3",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.2.0",
"mini-css-extract-plugin": "^1.3.5",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"terser": "^5.5.1",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"webpack-manifest-plugin": "^3.0.0"
}
}