-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.37 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.37 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
86
87
88
{
"name": "@touratica/html-scoreboard",
"version": "0.0.0-development",
"description": "Self-serving HTML scoreboard.",
"homepage": "https://github.com/Touratica/html-scoreboard#readme",
"bugs": {
"url": "https://github.com/Touratica/html-scoreboard/issues"
},
"license": "EUPL-1.2",
"author": "João Pedro Almeida <me@touratica.pt> (https://github.com/Touratica)",
"files": [
"dist"
],
"main": "dist/server.js",
"bin": {
"html-scoreboard": "dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Touratica/html-scoreboard.git"
},
"scripts": {
"build": "npm run build:prod",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"semantic-release": "semantic-release",
"prepack": "npm run build",
"start": "node .",
"lint": "eslint ./src",
"prepare": "husky install"
},
"dependencies": {
"http-server": "^14.1.1"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.22.0",
"@html-eslint/parser": "^0.22.0",
"@tsconfig/node-lts": "^20.1.1",
"@tsconfig/recommended": "^1.0.3",
"@tsconfig/strictest": "^2.0.2",
"@types/http-server": "^0.12.4",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.16",
"css-loader": "^6.9.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"favicons": "^7.1.5",
"favicons-webpack-plugin": "^6.0.1",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"mini-css-extract-plugin": "^2.7.7",
"postcss": "^8.4.33",
"postcss-loader": "^7.3.4",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"semantic-release": "^22.0.12",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-shebang-plugin": "^1.1.8"
},
"engines": {
"node": ">= 12"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
},
"lint-staged": {
"**/*": [
"eslint",
"prettier --write --ignore-unknown"
]
}
}