This repository has been archived by the owner on Mar 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.7 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
{
"name": "create-react-webpack-project",
"version": "1.16.4",
"description": "Command line tool to create single page applications using React and Webpack with a lot of different addons.",
"repository": {
"type": "git",
"url": "git+https://github.com/Create-Node-App/create-react-webpack-app.git"
},
"bugs": {
"url": "https://github.com/Create-Node-App/create-react-webpack-app/issues"
},
"homepage": "https://github.com/Create-Node-App/create-react-webpack-app#readme",
"keywords": [
"react",
"webpack",
"babel",
"code generator"
],
"bin": {
"create-react-webpack-project": "./index.js",
"crwp": "./index.js"
},
"authors": [
{
"name": "Ulises Jeremias Cornejo Fandos",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"cna-cli": "^1.5.3",
"commander": "^7.0.0",
"prompts": "^2.4.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2"
},
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"scripts": {
"lint": "prettier --ignore-path .eslintignore --check \"**/*.{js,json,md}\" && eslint .",
"lint:fix": "prettier --ignore-path .eslintignore --write \"**/*.{js,json,md}\" && eslint . --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"yarn lint:fix"
],
"*.{json,md}": [
"prettier --write"
]
}
}