-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.27 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
{
"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": "eslint '{commands,modules,packages,presets}/*/{src,__tests__}/**/*.js' --fix --cache --quiet --format codeframe",
"release": "lerna version && lerna publish from-package",
"presetup": "echo foo-bar",
"setup": "yarn",
"postsetup": "yarn run setup:full",
"setup:ci": "yarn --frozen-lockfile --check-files",
"postsetup:ci": "yarn run setup:full",
"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"
},
"dependencies": {
"@tunnckocore/eslint-config": "^5.4.5",
"@tunnckocore/prettier-config": "^1.3.4",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lockfile-lint": "^4.0.0",
"prettier": "^1.19.1",
"prettier-plugin-pkgjson": "^0.2.4"
}
}