forked from SamagraX-Stencil/stencil-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.76 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
96
97
98
99
100
101
{
"name": "@samagra-x/stencil-cli",
"version": "0.0.5",
"description": "Stencil cli for custom nest bootstrap",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 16"
},
"bin": {
"stencil": "bin/stencil.js"
},
"scripts": {
"build": "tsc",
"clean": "gulp clean:bundle",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint '{lib,commands,actions}/**/*.ts' --fix",
"start": "node bin/stencil.js",
"prepack": "npm run build",
"prepublish:next": "npm run build",
"publish:latest": "npm publish --access public && npm run clean",
"prepublish:npm": "npm run build",
"test": "jest --config test/jest-config.json",
"test:dev": "npm run clean && jest --config test/jest-config.json --watchAll",
"prerelease": "npm run build",
"release": "release-it",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamagraX-Stencil/stencil-cli.git"
},
"license": "MIT",
"homepage": "https://github.com/SamagraX-Stencil/stencil-cli#readme",
"dependencies": {
"@angular-devkit/core": "16.2.3",
"@angular-devkit/schematics": "16.2.3",
"@angular-devkit/schematics-cli": "16.2.3",
"@samagra-x/schematics": "^0.0.5",
"chalk": "4.1.2",
"chokidar": "3.5.3",
"cli-table3": "0.6.3",
"commander": "4.1.1",
"fork-ts-checker-webpack-plugin": "8.0.0",
"inquirer": "8.2.6",
"node-emoji": "1.11.0",
"ora": "5.4.1",
"os-name": "4.0.1",
"rimraf": "4.4.1",
"shelljs": "0.8.5",
"source-map-support": "0.5.21",
"tree-kill": "1.2.2",
"tsconfig-paths": "4.2.0",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.2.2",
"webpack": "5.88.2",
"webpack-node-externals": "3.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.7.2",
"@commitlint/config-angular": "17.7.0",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.91",
"@types/inquirer": "9.0.3",
"@types/jest": "29.5.5",
"@types/node": "18.18.3",
"@types/node-emoji": "1.8.2",
"@types/shelljs": "0.8.13",
"@types/webpack-node-externals": "3.0.2",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"delete-empty": "3.0.0",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"release-it": "16.2.1",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4"
},
"lint-staged": {
"**/*.{ts,json}": []
},
"peerDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.62"
},
"peerDependenciesMeta": {
"@swc/cli": {
"optional": true
},
"@swc/core": {
"optional": true
}
}
}