-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
56 lines (56 loc) · 1.7 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
{
"private": true,
"name": "hela-monorepo",
"workspaces": [
"commands/*",
"modules/*",
"packages/*",
"presets/*"
],
"author": "Charlike Mike Reagent <[email protected]>",
"scripts": {
"bootstrap": "lerna bootstrap --since",
"clean:fresh": "lerna clean -y && rm -rf node_modules yarn.lock",
"format": "prettier '**/*.{js,md,json}' --write",
"lint": "hela eslint --fix",
"lint:fresh": "rm -rf .cache/hela-eslint-cache && hela eslint --fix",
"release": "lerna version && lerna publish from-package",
"presetup": "echo foo-bar",
"setup": "yarn",
"postsetup": "yarn run setup:full",
"setup:ci": "yarn setup --frozen-lockfile --check-files",
"setup:full": "yarn audit && yarn run setup:locklint && yarn run bootstrap",
"setup:locklint": "lockfile-lint --path yarn.lock --type yarn --validate-https",
"test": "jest",
"test:ci": "jest --coverage --onlyChanged"
},
"dependencies": {
"@tunnckocore/eslint-config": "^5.4.5",
"@tunnckocore/prettier-config": "^1.3.4",
"acorn-globals": "ForbesLindesay/acorn-globals#greenkeeper/acorn-7.1.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"lockfile-lint": "^4.0.0",
"prettier": "^1.19.1",
"prettier-plugin-pkgjson": "^0.2.4"
},
"hela": "./.hela.config.js",
"husky": {
"hooks": {
"pre-commit": "yarn test --onlyChanged && lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,mjs,cjs,ts,tsx}": "hela eslint --fix --globOptions.dot --",
"**/*.{js,md,json}": "prettier --write"
},
"renovate": {
"extends": [
"@tunnckocore"
]
}
}