-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.19 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.19 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
94
95
96
97
98
99
100
101
{
"name": "@lenconda/generator-react-app",
"version": "0.1.3",
"description": "A generator for generating React applications with Webpack",
"homepage": "https://github.com/lenconda/generator-react-app",
"author": {
"name": "lenconda",
"email": "i@lenconda.top",
"url": "https://lenconda.top"
},
"publishConfig": {
"access": "public"
},
"files": [
"generators",
"package.json",
"README.md",
"LICENSE"
],
"main": "generators/index.js",
"keywords": [
"Webpack",
"React.js",
"Yeoman",
"yeoman-generator"
],
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.23",
"@types/fs-extra": "^9.0.6",
"@types/lodash": "^4.14.168",
"@types/yeoman-generator": "^4.11.3",
"@types/yosay": "0.0.29",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"coveralls": "^3.0.5",
"eslint": "^7.12.1",
"eslint-config-prettier": "7.0.0",
"eslint-config-xo": "^0.26.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^3.0.1",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"tsc": "^1.20150623.0",
"typescript": "^4.1.3",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^2.1.0",
"cheerio": "^1.0.0-rc.5",
"download-git-repo": "^3.0.2",
"fs-extra": "^9.1.0",
"lodash": "^4.17.20",
"yeoman-generator": "^2.0.1",
"yosay": "^2.0.1"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": "error"
},
"plugins": [
"prettier"
]
},
"scripts": {
"pretest": "eslint .",
"test": "exit 0",
"clean:build": "rimraf generators",
"build": "npm run clean:build && tsc"
},
"repository": "lenconda/generator-react-app",
"license": "MIT"
}