-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.89 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.89 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
{
"name": "st-create",
"version": "3.0.4",
"publishConfig": {
"access": "public"
},
"keywords": [
"springtype",
"scaffold",
"generator",
"code generator",
"create"
],
"description": "A versatile, template based code generator. Generates SpringType project boilerplates.",
"repository": {
"type": "git",
"url": "git+https://github.com/springtype-org/st-create.git"
},
"scripts": {
"prebuild": "npx st-rm-rf dist",
"build": "tsc",
"postbuild": "npx st-cp package.json node_modules README.md dist",
"start": "node ./dist/cli.js",
"format:fix": "pretty-quick --verbose --pattern 'src/**/*.ts{,x}'",
"format:fix:staged": "yarn format:fix --staged",
"format:check": "pretty-quick --check --verbose --pattern 'src/**/*.ts{,x}'",
"lint:fix": "eslint --ext ts 'src/**/*.ts{,x}' --fix",
"lint:check": "eslint --ext ts 'src/**/*.ts{,x}'"
},
"engines": {
"node": ">=10"
},
"bundledDependencies": [
"envinfo",
"chalk",
"st-rm-rf",
"inquirer",
"commander",
"cross-spawn",
"validate-npm-package-name"
],
"bin": {
"st-create": "./cli.js"
},
"main": "cli.js",
"author": "Aron Homberg <info@aron-homberg.de>, Michael Mannseicher <m.mansi1@gmx.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/springtype-org/st-create/issues"
},
"homepage": "https://www.springtype.org",
"husky": {
"hooks": {
"pre-commit": "yarn format:fix:staged && yarn lint:check",
"pre-push": "yarn audit --level MODERATE",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.1.0",
"cross-spawn": "^7.0.3",
"envinfo": "^7.7.4",
"inquirer": "^7.3.3",
"st-rm-rf": "^2.0.0-beta.1",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"st-run": "^2.0.0-beta.4",
"@commitlint/cli": "^11.0.0",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"conventional-changelog-conventionalcommits": "^4.5.0",
"eslint": "^7.19.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0"
}
}