This repository has been archived by the owner on Jul 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.67 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
{
"name": "@freighter/monorepo",
"version": "0.1.0",
"description": "Batteries-included monorepo framework",
"repository": "http://github.com/PsychoLlama/freighter",
"author": "Jesse Gibson <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"test:unit": "freighter-scripts test",
"test:lint": "freighter-scripts lint",
"test": "freighter-scripts ci"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"freighter-scripts lint --fix"
]
},
"eslintConfig": {
"extends": [
"freighter-repo",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"overrides": [
{
"files": "**/__tests__/*.{js,ts}{x,}",
"rules": {
"@typescript-eslint/no-explicit-any": "off"
}
}
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off"
}
},
"jest": {
"preset": "@freighter/scripts"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.14.8",
"@babel/preset-typescript": "7.14.5",
"@freighter/scripts": "*",
"@typescript-eslint/eslint-plugin": "4.28.4",
"@typescript-eslint/parser": "4.28.4",
"eslint-config-freighter-repo": "*",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.4.0",
"husky": "7.0.1",
"lerna": "4.0.0",
"lint-staged": "11.1.1",
"typescript": "4.3.5"
}
}