-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@toreda/typescript-cli-starter",
"version": "0.0.1",
"description": "TypeScript CLI starter app.",
"main": "./dist/index.js",
"scripts": {
"build": "yarn build:prod",
"build:prod": "yarn webpack --config=webpack.config.ts --env prod",
"build:dev": "yarn webpack --config=webpack.config.ts --env dev",
"test": "yarn jest --coverage",
"start": "yarn build & node ./dist/cli-app.min.js",
"lint": "yarn eslint ./src/**.ts --quiet",
"lint:fix": "yarn eslint ./src/**.ts --quiet --fix",
"make:docs": "yarn typedoc docs --categorizeByGroup false --entryPoints ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toreda/typescript-cli-starter.git"
},
"keywords": [
"app",
"cli",
"starter",
"typescript-cli-starter",
"project-template",
"cli-app-template",
"cli-template",
"typescript-cli-template",
"typescript-app",
"toreda"
],
"author": "Toreda, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/toreda/typescript-cli-starter/issues"
},
"homepage": "https://github.com/toreda/typescript-cli-starter#readme",
"devDependencies": {
"@swc/core": "^1.5.29",
"@swc/jest": "^0.2.36",
"@toreda/build-tools": "^0.8.0",
"@toreda/eslint-config": "^2.2.0",
"@toreda/prettier-config": "^1.0.1",
"@toreda/types": "^2.16.0",
"@types/eslint": "^8.56.9",
"@types/gulp": "^4.0.17",
"@types/jest": "^29.5.12",
"@types/node": "^18.6.3",
"@types/webpack": "^5.28.5",
"@types/webpack-node-externals": "^3.0.4",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"esbuild": "^0.20.2",
"esbuild-config": "^1.0.1",
"esbuild-loader": "^4.1.0",
"esbuild-node-externals": "^1.13.1",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"gulp": "^5.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"prettier": "@toreda/prettier-config",
"resolutions": {
"async": "^3.2.2",
"chokidar": "^3.0.0",
"set-value": "^4.0.1",
"glob-parent": "^5.1.2",
"lodash.template": "^4.5.0",
"ansi-regex": "^5.0.1",
"jsonpointer": "^5.0.0",
"marked": "^4.0.10"
},
"dependencies": {
"@toreda/fate": "^0.7.0",
"@toreda/log": "^0.6.16",
"@toreda/strong-types": "^0.28.5",
"async": "^3.2.2",
"jsonpointer": "^5.0.0",
"marked": "^4.0.10",
"yargs": "^17.5.1"
}
}