-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.29 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
{
"name": "@espeo/create-espeo-app-cli",
"version": "0.2.0",
"description": "CLI for https://github.com/espeo/espeo-create-react-app",
"main": "dist/index.js",
"bin": {
"espeo": "./bin/init.js"
},
"preferGlobal": true,
"keywords": [
"react",
"boilerplate",
"template",
"create-espeo-app",
"espeo"
],
"scripts": {
"postversion": "git push --follow-tags",
"prepare": "yarn build",
"precommit": "lint-staged",
"build": "yarn clean & webpack",
"watch": "webpack --watch",
"clean": "rm -rf dist",
"test": "jest --passWithNoTests",
"lint": "eslint ./src --ext .ts",
"audit": "yarn audit"
},
"author": "Espeo Software",
"license": "MIT",
"homepage": "https://github.com/espeo/espeo-create-react-app-cli",
"dependencies": {
"child_process": "1.0.2",
"cli-spinner": "0.2.10",
"commander": "^4.0.1",
"consolidate": "^0.15.1",
"find-up": "4.1.0",
"fs-extra": "^8.1.0",
"handlebars": "4.7.6",
"inquirer": "^7.3.3",
"js-yaml": "3.13.1",
"mkdirp": "^1.0.3",
"node-fetch": "2.6.1",
"semver": "7.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/espeo/espeo-create-react-app-cli"
},
"resolutions": {
"**/optimist/minimist": "0.2.1"
},
"bugs": "https://github.com/espeo/espeo-create-react-app-cli",
"devDependencies": {
"@types/cli-spinner": "0.2.0",
"@types/consolidate": "0.14.0",
"@types/fs-extra": "8.0.1",
"@types/inquirer": "7.3.1",
"@types/jest": "26.0.14",
"@types/js-yaml": "3.12.2",
"@types/mkdirp": "1.0.0",
"@types/node-fetch": "2.5.7",
"@types/semver": "7.1.0",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"codecov": "3.7.1",
"eslint": "7.9.0",
"eslint-config-prettier": "6.11.0",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.3",
"jest": "26.4.2",
"lint-staged": "10.4.0",
"prettier": "1.19.1",
"ts-jest": "26.4.0",
"ts-loader": "6.2.1",
"tsconfig-paths-webpack-plugin": "3.2.0",
"typescript": "3.8.3",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-node-externals": "1.7.2"
},
"engines": {
"yarn": ">=1.16.0"
}
}