-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.42 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
36
37
38
39
40
41
42
43
44
{
"$schema": "https://json.schemastore.org/package.json",
"name": "yarn3-typescript-nodejs-esbuild",
"license": "MIT",
"author": "Oliver Salzburg <oliver.salzburg@gmail.com>",
"type": "module",
"scripts": {
"build": "node build.js",
"clean": "rm -rf ./output",
"lint": "yarn run lint:all",
"lint:all": "yarn run lint:eslint && yarn run lint:prettier && yarn run lint:tsc",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"test": "tsc && node $(yarn bin mocha) output/*.test.js",
"test:coverage": "tsc && c8 --reporter=html-spa node $(yarn bin mocha) output/*.test.js"
},
"devDependencies": {
"@eslint/js": "9.14.0",
"@oliversalzburg/eslint-config": "1.1.0",
"@oliversalzburg/js-utils": "0.1.1",
"@types/chai": "5.0.1",
"@types/eslint": "9.6.1",
"@types/mocha": "10.0.9",
"@types/node": "22.9.0",
"c8": "10.1.2",
"chai": "5.1.2",
"esbuild": "0.24.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsdoc": "50.5.0",
"eslint-plugin-tsdoc": "0.3.0",
"globals": "15.12.0",
"lint-staged": "15.2.10",
"mocha": "10.8.2",
"prettier": "3.3.3",
"prettier-package-json": "2.8.0",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-sh": "0.14.0",
"typescript": "5.6.3",
"typescript-eslint": "8.14.0"
},
"packageManager": "yarn@4.5.1"
}