-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.85 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "mywebsite",
"type": "module",
"version": "0.0.2",
"scripts": {
"dev": "astro dev",
"staging": "NODE_TLS_REJECT_UNAUTHORIZED=0 bun ./scripts/run-env.ts staging dev",
"production": "bun ./scripts/run-env.ts production dev",
"build:staging": "bun ./scripts/run-env.ts staging build",
"build:production": "bun ./scripts/run-env.ts production build && bun run index:production",
"migrate": "bun ./scripts/migrate.ts",
"astro": "dotenv -c -- bash -c 'astro'",
"generate-output": "gql.tada generate-output",
"tada-doctor": "gql-tada doctor",
"tada-check": "gql-tada check",
"prepare": "husky",
"generate-schema": "bun ./scripts/gen-gql-schema.ts",
"format": "prettier . --write --ignore-unknown",
"index:staging": "dotenv -c -- bash -c 'NODE_TLS_REJECT_UNAUTHORIZED=0 bun run ./scripts/index-opensearch.ts staging'",
"index:production": "dotenv -c -- bash -c 'bun run ./scripts/index-opensearch.ts production'",
"sync-visual:staging": "dotenv -c staging -- bun ./scripts/sync-visual-select.ts",
"sync-visual:production": "dotenv -c production -- bun ./scripts/sync-visual-select.ts",
"a11y:dev": "axe http://localhost:4321 --tags wcag21aa --exit",
"a11y:all": "axe http://localhost:4321 --tags wcag2a,wcag2aa,wcag21a,wcag21aa --exit",
"a11y:best": "axe http://localhost:4321 --tags best-practice --exit"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"@astrojs/ts-plugin": "^1.10.9",
"@astrojs/vercel": "^9.0.5",
"@datocms/astro": "^0.6.13",
"@datocms/cda-client": "^0.2.10",
"@datocms/cma-client": "^5.5.4",
"@opensearch-project/opensearch": "^3.6.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"astro": "^5.18.2",
"bootstrap-italia": "^2.18.1",
"datocms-structured-text-to-plain-text": "^5.1.16",
"dotenv": "^17.4.2",
"gql.tada": "^1.11.2",
"graph-italia-components": "^0.3.29",
"jsonwebtoken": "^9.0.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-grid-layout": "^2.2.3",
"react-resizable": "^4.0.2"
},
"devDependencies": {
"@datocms/cli": "^4.0.28",
"@types/axe-core": "^3.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.62.1",
"astro-eslint-parser": "^1.4.0",
"axe-core": "^4.12.1",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier-plugin-astro": "^0.14.1",
"sass-embedded": "^1.100.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"**/*.{js,ts,tsx,astro,scss}": [
"eslint --fix",
"prettier . --write --ignore-unknown"
]
}
}