-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 870 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 870 Bytes
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
{
"name": "modern-css-skills",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"check": "bun run --sequential \"check:*\"",
"check:css": "stylelint \"src/**/*.css\" \"src/components/**/*.js\"",
"check:format": "oxfmt --check .",
"check:js": "oxlint",
"check:types": "astro check",
"format": "oxfmt --write .",
"test": "playwright test"
},
"dependencies": {
"astro": "6.1.8"
},
"devDependencies": {
"@astrojs/check": "0.9.8",
"@playwright/test": "^1.59.1",
"oxfmt": "^0.40.0",
"oxlint": "^1.61.0",
"postcss-lit": "^1.4.1",
"stylelint": "^17.8.0",
"stylelint-config-alphabetical-order": "^2.0.0",
"stylelint-config-modern": "^0.1.0",
"stylelint-config-standard": "^40.0.0"
}
}