-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
64 lines (64 loc) · 1.89 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "nodejs-typescript-modern-starter",
"version": "1.0.0",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"bin": {
"nodejs-typescript-modern-starter": "dist/src/index.js",
"ntms": "dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xddq/schema2typebox.git"
},
"keywords": [
"nodejs",
"typescript",
"modern",
"starter",
"nodejs typescript modern starter",
"debugging",
"ts",
"esbuild",
"prettier",
"typescript5",
"CI/CD",
"minimal"
],
"author": "Pierre Dahmani <[email protected]>",
"license": "MIT",
"scripts": {
"bundle": "rimraf dist && esbuild --outdir=dist --sourcemap --bundle --platform=node --target=node20.10.0 ./src/index.ts",
"compile": "tsc",
"compile:watch": "tsc -w",
"dev": "nodemon --watch src --watch test --ext ts,json --exec 'yarn bundle && yarn start'",
"debug": "yarn bundle && node --enable-source-maps --inspect-brk ./dist/index.js",
"debug:test": "node --inspect-brk ./node_modules/.bin/jest --runInBand .",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"start": "node --enable-source-maps ./dist/index.js",
"test": "jest --runInBand ."
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@jest/globals": "29.7.0",
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.14",
"@types/node": "20.17.12",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"esbuild": "0.21.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"nodemon": "3.1.9",
"prettier": "3.4.2",
"rimraf": "5.0.10",
"typescript": "5.7.3"
},
"packageManager": "[email protected]"
}