-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "archivesspace-tech-docs",
"version": "1.0.0",
"description": "ArchivesSpace technical documentation",
"repository": "https://github.com/archivesspace/tech-docs",
"type": "module",
"license": "ECL-2.0",
"engines": {
"node": "^18.17.1 || ^20.3.0 || >=21.0.0"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test:dev": "cypress run --env MODE=development",
"test:prod": "cypress run --env MODE=production",
"test": "npm run test:prod",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"stylelint:check": "stylelint '**/*.{astro,css}' -f verbose",
"stylelint:fix": "stylelint --fix '**/*.{astro,css}' -f verbose"
},
"dependencies": {
"@astrojs/starlight": "^0.29.0",
"astro": "^4.16.8",
"sharp": "^0.33.5"
},
"devDependencies": {
"cypress": "^13.15.2",
"postcss-html": "^1.7.0",
"prettier": "3.3.3",
"prettier-plugin-astro": "^0.14.1",
"stylelint": "^16.10.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended": "^14.0.1"
}
}