-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.19 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
65
66
67
68
69
70
71
72
{
"name": "ts-boilerplatex",
"version": "2.0.7",
"description": "TS-BoilerplateX is a meticulously crafted boilerplate tailored for developers seeking a seamless starting point for building powerful web applications with TypeScript and Express.js. With TS-BoilerplateX, harness the combined benefits of TypeScript's static typing and Express.js' flexibility to expedite your development process while ensuring code integrity and maintainability.",
"main": "main.js",
"bin": {
"TS-BoilerplateX": "bin/cli.js"
},
"scripts": {
"clean": "rimraf dist build package docs",
"dev": "nodemon",
"start": "ts-node src/main.ts",
"production": "node dist/main.js",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/main.ts",
"build": "tsc -p tsconfig.json",
"esbuild-node": "esbuild src/main.ts --bundle --platform=node --outdir=dist/node",
"build-all": "yarn clean && yarn build && yarn esbuild-node "
},
"repository": {
"type": "git",
"url": "git+https://github.com/eldhopaulose/TS-BoilerplateX.git"
},
"keywords": [
"ts",
"typescript",
"express",
"framework",
"web",
"rest",
"restful",
"router",
"app",
"api"
],
"author": "Eldho Paulose",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eldhopaulose/TS-BoilerplateX/issues"
},
"homepage": "https://github.com/eldhopaulose/TS-BoilerplateX#readme",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"esbuild": "^0.21.4",
"eslint": "^9.4.0",
"nodemon": "^3.1.3",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"express": "^4.19.2",
"morgan": "^1.10.0",
"tslib": "^2.6.3"
},
"directories": {
"doc": "docs"
}
}