-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
97 lines (97 loc) · 2.14 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
95
96
97
{
"name": "giggle",
"author": {
"name": "dan-lovelace",
"url": "https://github.com/dan-lovelace/giggle"
},
"license": "MIT",
"version": "0.2.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"initialize": "./scripts/init.sh",
"lint": "eslint .",
"build": "yarn workspace @giggle/app build",
"dev": "yarn workspace @giggle/app dev",
"start": "yarn workspace @giggle/app start"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"prettier": "^3.0.3"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"eslint-plugin-import"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:cypress/recommended",
"prettier"
],
"rules": {
"no-console": "warn",
"@typescript-eslint/no-explicit-any": "off",
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"internal"
],
"pathGroups": [
{
"pattern": "react",
"group": "external",
"position": "before"
}
],
"pathGroupsExcludedImportTypes": [
"react"
],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
]
},
"env": {
"browser": true,
"node": true,
"es2021": true
},
"ignorePatterns": [
"node_modules",
"dist"
]
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 80,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"proseWrap": "always"
},
"engines": {
"node": ">=18"
}
}