-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.7 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
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
{
"name": "unifier-cli",
"version": "2.1.0",
"description": "unifier-cli is a front-end tool, that created for unifying all configs, structure, and share base codebase within different Requestum projects",
"main": "dist/cli.js",
"scripts": {
"prepare": "npx husky install && npx husky set .husky/pre-commit \"npm run hook:pre-commit\" && npm run build",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"build": "run-s build:app build:cli",
"build:app": "webpack --mode production",
"build:cli": "node ./bin/add-shebang-to-cli",
"test": "echo Tests is not specified!",
"lint": "eslint ./src/**/* --fix",
"dev": "webpack --watch --progress --mode development",
"pretty-quick": "pretty-quick --staged",
"hook:pre-commit": "npm run pretty-quick"
},
"files": [
"README.md",
"package.json",
"package-lock.json",
"LICENSE",
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/requestum-team/unifier-cli.git"
},
"keywords": [
"unifying",
"configs",
"project-template",
"project-generator",
"angular",
"js",
"email"
],
"author": "Alex Tikhonenko <alevettih@gmail.com>",
"license": "MIT",
"bin": {
"unifier-cli": "dist/cli.js"
},
"bugs": {
"url": "https://github.com/requestum-team/unifier-cli/issues"
},
"homepage": "https://github.com/requestum-team/unifier-cli#readme",
"dependencies": {
"ansi-colors": "^4.1.3",
"change-case": "^4.1.2",
"deepmerge": "^4.2.2",
"execa": "^5.1.1",
"fs-extra": "^10.1.0",
"enquirer": "^2.3.6",
"get-port": "^6.1.2",
"listr2": "^4.0.5",
"minimist": "^1.2.6",
"handlebars": "^4.7.7",
"path": "^0.12.7",
"rimraf": "^3.0.2",
"rxjs": "^7.5.7",
"semver": "^7.3.7",
"split": "^1.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.0.0"
},
"devDependencies": {
"@types/execa": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.2",
"@types/handlebars": "^4.1.0",
"@types/node": "^18.0.6",
"@types/semver": "^7.3.10",
"@types/split": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^3.2.0",
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"ts-loader": "^9.3.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}