-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 915 Bytes
/
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
{
"name": "cold-enough-for-beer",
"version": "1.0.0",
"description": "A web site that tells you if your location is cold enough to store beer outside",
"type":"module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "alive-server --ignore=.git/**/* --port=3000 --https=./node_modules/live-server-https",
"lint": "eslint index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:ivanoats/cold-enough-for-beer.git"
},
"author": "Ivan Storck",
"license": "MIT",
"homepage": "https://coldout.beer",
"devDependencies": {
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"alive-server": "^1.3.0",
"live-server-https": "0.0.2",
"prettier": "^3.5.0"
},
"dependencies": {
"@types/jquery": "^3.5.32"
}
}