-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
99 lines (99 loc) · 2.63 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
{
"name": "create-wp-react-app",
"version": "2.1.2",
"description": "Create React WordPress plugin with no build configuration.",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"lint": "eslint \"src/**/*.ts\""
},
"keywords": [
"wp",
"react",
"zero-configuration",
"build-tools"
],
"bin": {
"create-wp-react-app": "lib/index.js"
},
"homepage": "https://devowl.io/wp-react-starter/",
"repository": {
"type": "git",
"url": "git+https://github.com/devowlio/create-wp-react-app.git"
},
"bugs": {
"url": "https://github.com/devowlio/create-wp-react-app/issues"
},
"author": {
"name": "Matthias Günter",
"email": "[email protected]",
"url": "https://devowl.io/"
},
"contributors": [
{
"name": "devowl.io GmbH",
"email": "[email protected]"
}
],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
140
]
}
},
"prettier": {
"arrowParens": "always",
"printWidth": 120,
"useTabs": false,
"tabWidth": 4,
"endOfLine": "lf"
},
"dependencies": {
"axios": "^0.19.2",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"gitlab": "^14.2.2",
"glob": "^7.1.6",
"inquirer": "^7.0.0",
"listr": "^0.14.2",
"listr-input": "^0.2.0",
"lodash": "^4.17.15",
"rimraf": "^3.0.0",
"slugify": "^1.3.6",
"terminal-link": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@samverschueren/stream-to-observable": "^0.3.0",
"@types/fs-extra": "^8.0.1",
"@types/inquirer": "^6.5.0",
"@types/rimraf": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^4.2.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"ts-node": "^8.5.2",
"typescript": "^3.7.2",
"zen-observable": "^0.8.14"
}
}