-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.36 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
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
87
88
89
90
91
92
93
94
{
"name": "hops",
"description": "universal build tools",
"keywords": ["webpack", "babel", "postcss"],
"private": true,
"license": "MIT",
"homepage": "https://github.com/xing/hops",
"repository": {
"type": "git",
"url": "https://github.com/xing/hops.git"
},
"bugs": {
"url": "https://github.com/xing/hops/issues"
},
"engines": {
"node": ">5.0.0"
},
"contributors": [
"dmbch <[email protected]> (https://www.xing.com/profile/Daniel_Dembach)",
"TobiasKrogh <[email protected]> (https://www.xing.com/profile/Tobias_Krogh)",
"matthias-reis <[email protected]> (https://www.xing.com/profile/Matthias_Reis3)",
"rcsole <[email protected]> (https://www.xing.com/profile/Ricard_soleCasas)",
"rudeworks <[email protected]> (https://www.xing.com/profile/Rude_Ayelo)",
"pixelass <[email protected]> (https://www.xing.com/profile/Gregor_Adams2)",
"drixsonic <[email protected]> (https://www.xing.com/profile/Cedric_Trigoso)",
"robin-drexler <[email protected]> (https://www.xing.com/profile/Robin_Drexler)",
"BlakeSimpson <[email protected]> (https://www.xing.com/profile/Blake_Simpson)",
"systemboogie <[email protected]> (https://www.xing.com/profile/Marcus_Noll3)",
"KingHenne <[email protected]> (https://www.xing.com/profile/Hendrik_Liebau2)",
"ZauberNerd <[email protected]> (https://www.xing.com/profile/Bjoern_Brauer5)",
"ghost23 <[email protected]> (https://www.xing.com/profile/Sven_Busse)"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"start": "cd packages/template-react; yarn start",
"test": "lerna run test --stream",
"lint": "eslint \"packages/**/*.js\"",
"release": "lerna publish --exact --conventional-commits",
"update": "yarn upgrade-interactive --latest && rm yarn.lock && yarn",
"postupdate": "lerna clean --yes && lerna bootstrap",
"reset": "git clean -dfx && yarn && yarn bootstrap",
"fmt":
"prettier --write --ignore-path .gitignore '**/*.{js,json,css}' '**/README.md'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css}": ["prettier --write --ignore-path .gitignore", "git add"],
"**/README.md": ["prettier --write --ignore-path .gitignore", "git add"]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": {
"trailingComma": "es5",
"jsxBracketSameLine": true,
"proseWrap": false,
"singleQuote": true
},
"eslintConfig": {
"extends": ["semistandard", "prettier"],
"plugins": ["react", "prettier"],
"rules": {
"prettier/prettier": "error",
"indent": ["warn", 2],
"max-len": ["warn", 80]
},
"parserOptions": {
"ecmaVersion": 5,
"env": {
"es6": false
}
}
},
"eslintIgnore": ["**/node_modules/**", "**/template-*/**", "**/spec/mock/**"],
"workspaces": ["packages/*"],
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lerna": "^2.5.1",
"lint-staged": "^5.0.0",
"prettier": "1.8.2"
}
}