-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.21 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
{
"private": true,
"workspaces": [
"packages/*"
],
"keywords": [
"oreact",
"init",
"setup",
"deploy",
"orup",
"cli",
"pwa",
"project",
"generator"
],
"scripts": {
"pretest": "yarn lint",
"test": "lerna run test --stream",
"prettier": "prettier --write **/*.{js,ts,tsx,json,css,scss,md,yml}",
"lint": "eslint .",
"prepack": "ncp README.md packages/cli/",
"postpack": "rimraf packages/cli/README.md"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"husky": "^4.2.3",
"lerna": "^3.16.4",
"lint-staged": "^10.0.7",
"ncp": "^2.0.0",
"prettier": "^2.0.2",
"rimraf": "^3.0.2"
},
"homepage": "https://oreactjs.com/docs/cli/introduction",
"author": "Vinay Kevadiya <vinaykevadiaa@gmail.com>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx,json,css,scss,md,yml}": [
"prettier --write"
]
}
}