-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.41 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
{
"name": "nodejs-typescript-eslint-starter",
"version": "1.0.0",
"description": "Starter template for nodejs with typescript and eslint 9",
"keywords": [
"nodejs",
"typescript",
"eslint",
"winston",
"logger",
"eslint-9",
"production"
],
"homepage": "https://github.com/XronTrix10/nodejs-typescript-eslint-starter#readme",
"bugs": {
"url": "https://github.com/XronTrix10/nodejs-typescript-eslint-starter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XronTrix10/nodejs-typescript-eslint-starter.git"
},
"license": "ISC",
"author": "Xron Trix",
"type": "commonjs",
"main": "src/index.ts",
"scripts": {
"dev": "tsc-watch --onSuccess \"node build/index.js\"",
"build": "tsc",
"start": "node build/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/module-alias": "^2.0.4",
"@types/node": "^22.14.0",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-import-resolver-typescript": "^4.3.2",
"eslint-plugin-import-x": "^4.10.2",
"tsc-watch": "^6.2.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1"
},
"dependencies": {
"dotenv": "^16.5.0",
"module-alias": "^2.2.3",
"winston": "^3.17.0",
"zod": "^3.24.3"
},
"_moduleAliases": {
"@": "./build"
}
}