-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.23 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.23 KB
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
{
"scripts": {
"postinstall": "patch-package",
"dev": "npx luna --dev"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.10",
"@webtides/element-js": "^1.0.0-alpha.9",
"@webtides/luna-cli": "0.11.0-dev.12",
"@webtides/luna-js": "0.11.0-dev.15",
"@webtides/luna-renderer": "0.11.0-dev.15",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.1",
"flexsearch": "^0.7.31",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"patch-package": "^8.0.0",
"postcss": "^8.4.32",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"prismjs": "^1.29.0",
"tailwindcss": "^3.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,js,json,yaml,yml,md}": [
"prettier --write"
]
},
"prettier": {
"endOfLine": "lf",
"printWidth": 120,
"trailingComma": "all",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"arrowParens": "always",
"overrides": [
{
"files": "*.md",
"options": {
"useTabs": false,
"trailingComma": "none",
"proseWrap": "never"
}
},
{
"files": [
"*.css",
"*.yaml",
"*.yml"
],
"options": {
"tabWidth": 2
}
}
]
}
}