-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "@strg-at/template-node",
"version": "0.1.0",
"type": "module",
"description": "<add some usefull description>",
"scripts": {
"test": "NODE_ENV=test nyc mocha --require tsx src/**/*.spec.ts",
"start": "node ./dist/index.js",
"build": "rm -rf dist && tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "tsx watch src/index.ts"
},
"devDependencies": {
"@eslint/js": "9.32.0",
"@types/chai": "5.2.2",
"@types/mocha": "10.0.10",
"@types/node": "24.2.0",
"chai": "5.2.1",
"chai-as-promised": "8.0.1",
"eslint": "9.32.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsdoc": "52.0.4",
"globals": "16.3.0",
"mocha": "11.7.1",
"nyc": "17.1.0",
"prettier": "3.6.2",
"tsc-alias": "1.8.16",
"tsx": "4.20.3",
"typescript": "5.9.2",
"typescript-eslint": "8.39.0",
"winston": "3.17.0"
},
"homepage": "https://github.com/strg-at/template-node#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strg-at/template-node.git"
},
"keywords": [],
"author": "STRG.",
"license": "SEE LICENSE IN LICENSE",
"maintainers": [],
"dependencies": {
"@strg/logging-winston": "3.0.1"
}
}