-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.35 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.35 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
{
"name": "create-tools-app",
"version": "0.1.0",
"description": "Create Tools apps in one command",
"main": "index.js",
"repository": "idwall/create-tools-app",
"author": "Bu Kinoshita <bukinoshita@gmail.com>",
"license": "MIT",
"bin": {
"create-tools-app": "./bin/create-tools-app"
},
"files": [
"bin",
"lib",
"index.js"
],
"keywords": [
"create-tools-app",
"boilerplate",
"react",
"apollo",
"nextjs",
"ssr",
"cli"
],
"scripts": {
"test": "xo --quiet",
"precommit": "lint-staged"
},
"dependencies": {
"ansi-escapes": "^3.1.0",
"chalk": "^2.4.0",
"execa": "^0.10.0",
"fs-extra": "^5.0.0",
"inquirer": "^5.2.0",
"meow": "^4.0.0",
"ms": "^2.1.1",
"ora": "^2.0.0",
"shout-error": "^0.0.2",
"shout-message": "^0.0.2",
"shout-success": "^0.0.2",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"eslint-config-prettier": "^2.9.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"prettier": "^1.12.1",
"xo": "^0.20.3"
},
"xo": {
"extends": [
"prettier"
],
"ignores": [
"examples",
"lib/templates"
],
"rules": {
"unicorn/no-process-exit": 0
}
},
"lint-staged": {
"*.js": [
"yarn test",
"prettier --semi false --single-quote --write",
"git add"
]
}
}