-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.1 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"changelog": "lerna-changelog",
"format": "prettier --write 'packages/*/*.js' 'packages/*/!(node_modules)/**/*.js'",
"lint": "eslint . --fix"
},
"author": {
"name": "mrlyj",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Mrlyjoutlook/rf"
},
"keywords": [
"react",
"cli",
"create-react-app",
"spa",
"tools"
],
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"yarn.lock": [
"git rm --cached"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"homepage": "https://github.com/Mrlyjoutlook/rf/blob/master/README.md",
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"lerna": "^3.13.0",
"lerna-changelog": "^0.8.2",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0"
},
"license": "MIT",
"name": "rf-cli"
}