-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 934 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
{
"name": "gipuzkoan-net-salary-calc",
"version": "3.0.0",
"description": "Monthly net salary calculator that uses the applicable tax rates of Gipuzkoa.",
"author": "Alberto Calvo-García",
"scripts": {
"start": "node esbuild.mjs --serve",
"build": "node esbuild.mjs",
"lint": "npx eslint 'src/**/*.ts' && npx lit-analyzer --strict",
"test": "npx esbuild test/*.ts --bundle --outdir=tmp/test && npx web-test-runner tmp/test/*.js"
},
"dependencies": {
"lit": "2.8.0"
},
"devDependencies": {
"@chialab/esbuild-plugin-html": "0.17.3",
"@open-wc/testing": "3.2.0",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"@web/test-runner": "0.17.1",
"@web/test-runner-playwright": "0.10.1",
"esbuild": "0.17.19",
"eslint": "8.49.0",
"eslint-plugin-lit": "1.9.1",
"eslint-plugin-wc": "1.5.0",
"lit-analyzer": "2.0.0-pre.3"
}
}