-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "hello-world",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "run-p lint:*",
"lint:eslint": "eslint 'src/**/*.{js,ts,astro}'",
"lint:stylelint": "stylelint 'src/**/*.{js,ts,astro}'",
"lint:prettier": "prettier --check 'src/**/*.{js,ts}'",
"format": "run-s format:*",
"format:eslint": "eslint --fix 'src/**/*.{js,ts,astro}'",
"format:stylelint": "stylelint --fix 'src/**/*.{js,ts,astro}'",
"format:prettier": "prettier --write 'src/**/*.{js,ts}'"
},
"dependencies": {
"@astrojs/partytown": "^2.1.2",
"microcms-js-sdk": "^3.1.2",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.9.0",
"astro": "^4.11.6",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.2.4",
"eslint-plugin-prettier": "^5.2.1",
"npm-run-all": "^4.1.5",
"postcss-html": "^1.7.0",
"postcss-preset-env": "^10.0.8",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.7.2"
}
}