-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 866 Bytes
/
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
{
"name": "myrt.co",
"private": true,
"version": "3.0.0",
"scripts": {
"start": "pnpm dev",
"build": "astro build",
"dev": "astro dev",
"build:docker": "docker build -t myrt-co:latest .",
"prebuild:docker": "pnpm build",
"start:docker": "docker run --name myrt-app -d -p 80:80 -p 443:443 myrt-co:latest",
"stop:docker": "docker stop myrt-app || true && docker rm -f myrt-app || true",
"lint:styles": "stylelint 'src/styles/*'",
"spell-check": "cspell --show-suggestions --relative 'src/**/*.astro' 'src/**/*.md'",
"lint": "pnpm lint:styles"
},
"devDependencies": {
"astro": "^4.6.1",
"astro-typograf": "^2.0.0-rc.1",
"cspell": "^8.7.0",
"cspell-dict-ru_ru": "^1.4.0",
"postcss-scss": "^4.0.6",
"sass": "^1.54.0",
"stylelint": "^16.3.1",
"stylelint-config-standard": "^36.0.0"
}
}