-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "generator-react-app",
"version": "0.0.1",
"description": "Generator for opionated Combine Labs React applications.",
"repository": "[email protected]:Combine-Labs/generator-react-app.git",
"files": [
"generators"
],
"scripts": {
"build": "babel src --out-dir generators --copy-files",
"clean": "rm -rf sample-react-app",
"fix": "yarn lint --fix",
"generate": "yarn clean && yarn build && yo react-app --cra-cache",
"lint": "eslint . --ext .js",
"update:cra-cache": "rm -rf cra-cache && npx create-react-app cra-cache && cd cra-cache && echo y | yarn eject && cd .."
},
"keywords": [
"yeoman-generator"
],
"engines": {
"node": ">=12.0.0"
},
"author": "Steve Kaschinske <[email protected]>",
"license": "none",
"private": true,
"dependencies": {
"chalk": "^2.4.2",
"cli-progress": "^2.1.1",
"count-files": "^2.6.2",
"deep-extend": "^0.6.0",
"fs-extra": "^8.1.0",
"lodash": "^4.17.19",
"recursive-copy": "^2.0.10",
"yeoman-generator": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-plugin-add-module-exports": "^1.0.2",
"create-react-app": "^3.0.1",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
}
}