-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.2 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "mcra-utils",
"version": "0.1.4",
"description": "Be more productive by automating tasks and avoiding code rewrites.",
"type": "module",
"bin": "bin.js",
"main": "lib.js",
"license": "MIT",
"scripts": {
"server": "shadow-cljs stop && shadow-cljs start",
"server:stop": "shadow-cljs stop",
"bin-dev": "shadow-cljs watch bin",
"bin-release": "npm run clean && shadow-cljs release bin",
"lib-dev": "shadow-cljs watch lib",
"lib-release": "npm run clean && shadow-cljs release lib",
"test-w": "shadow-cljs watch test --config-merge \"{:autorun true}\"",
"test": "shadow-cljs compile test && node out/test.js",
"e2e": "shadow-cljs compile e2e && node out/e2e.js",
"quick-e2e": "shadow-cljs compile lib && pnpm run e2e",
"clean": "shx rm -rf ./compiled/"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.14.10",
"autoprefixer": "^10.4.19",
"cssnano": "^7.0.4",
"daisyui": "^4.12.10",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.4"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"google",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended"
],
"ignorePatterns": [
"dist"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"react-refresh",
"prettier"
],
"rules": {
"react-refresh/only-export-components": [
"warn",
{
"allowConstantExport": true
}
]
}
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"singleAttributePerLine": false,
"bracketSameLine": true,
"jsxSingleQuote": false,
"printWidth": 120,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"embeddedLanguageFormatting": "auto",
"vueIndentScriptAndStyle": false,
"astroAllowShorthand": true,
"overrides": [
{
"files": "*.md",
"options": {
"printWidth": 80,
"proseWrap": "always",
"parser": "markdown"
}
}
],
"importOrder": [
"^react",
"<THIRD_PARTY_MODULES>",
"^@/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"importOrderParserPlugins": [
"typescript",
"jsx",
"importAssertions"
],
"plugins": [
"prettier-plugin-tailwindcss",
"@trivago/prettier-plugin-sort-imports"
]
},
"engines": {
"node": ">=20"
},
"engineStrict": true,
"packageManager": "npm@10.5.0",
"author": {
"name": "Marcelo Almeida",
"email": "npm@marcelocra.com"
},
"repository": {
"type": "git",
"url": "https://github.com/marcelocra/utils"
}
}