-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "css-art",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"tsc": "tsc --noEmit",
"check": "astro check",
"eslint": "eslint -c eslint.config.js src/**/*.{astro,ts} *.{js,mjs}",
"lint:prettier": "prettier --check .",
"lint": "npm run check && npm run eslint && npm run lint:prettier",
"format": "npm run eslint -- --fix && prettier --write .",
"check-covers": "node bin/check-covers.js"
},
"dependencies": {
"@astrojs/check": "^0.8.0",
"astro": "^4.11.5",
"sass": "^1.77.6"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.2.3",
"eslint-plugin-jsx-a11y": "^6.9.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.0"
}
}