-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
133 lines (133 loc) · 3.97 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@acdh-oeaw/app",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": "22.x",
"pnpm": "9.x"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"analyze": "BUNDLE_ANALYZER=\"enabled\" next build --no-lint",
"build": "next build",
"dev": "next dev",
"format:check": "prettier . \"!./@(content|public)/**\" --cache --cache-location ./.prettiercache --check",
"format:fix": "pnpm run format:check --write",
"lint:check": "run-p --continue-on-error \"lint:*:check\"",
"lint:fix": "run-p --continue-on-error \"lint:*:fix\"",
"lint:code:check": "eslint . --cache",
"lint:code:fix": "pnpm run lint:code:check --fix",
"lint:styles:check": "stylelint \"./**/*.css\" --cache --ignore-path ./.gitignore",
"lint:styles:fix": "pnpm run lint:styles:check --fix",
"preinstall": "npx only-allow pnpm",
"prepare": "run-s setup",
"setup": "is-ci || simple-git-hooks",
"start": "next start",
"test": "exit 0",
"test:e2e": "playwright test",
"test:e2e:codegen": "playwright codegen",
"test:e2e:install": "playwright install --with-deps",
"test:e2e:ui": "playwright test --ui",
"test:e2e:update-snapshots": "playwright test --update-snapshots",
"types:check": "tsc --noEmit",
"validate": "run-p format:check lint:check types:check test test:e2e"
},
"dependencies": {
"@acdh-oeaw/lib": "^0.1.12",
"@acdh-oeaw/style-variants": "^0.1.0",
"@acdh-oeaw/validate-env": "^0.0.3",
"@react-aria/utils": "^3.26.0",
"client-only": "^0.0.1",
"fast-glob": "^3.3.2",
"image-dimensions": "^2.3.0",
"lucide-react": "^0.468.0",
"next": "^14.2.20",
"next-intl": "^3.26.1",
"react": "^18.3.1",
"react-aria": "^3.36.0",
"react-aria-components": "^1.5.0",
"react-dom": "^18.3.1",
"react-schemaorg": "^2.0.0",
"react-stately": "^3.34.0",
"server-only": "^0.0.1",
"sharp": "^0.33.5",
"valibot": "^1.0.0-beta.9"
},
"devDependencies": {
"@acdh-oeaw/eslint-config": "^2.0.5",
"@acdh-oeaw/eslint-config-next": "^2.0.11",
"@acdh-oeaw/eslint-config-node": "^2.0.5",
"@acdh-oeaw/eslint-config-playwright": "^2.0.6",
"@acdh-oeaw/eslint-config-react": "^2.0.6",
"@acdh-oeaw/eslint-config-tailwindcss": "^2.0.7",
"@acdh-oeaw/prettier-config": "^2.0.1",
"@acdh-oeaw/stylelint-config": "^2.0.5",
"@acdh-oeaw/tsconfig": "^1.3.0",
"@next/bundle-analyzer": "^14.2.20",
"@next/eslint-plugin-next": "^14.2.20",
"@playwright/test": "^1.49.1",
"@react-aria/optimize-locales-plugin": "^1.1.3",
"@react-types/shared": "^3.26.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.16",
"@types/react-dom": "^18.3.5",
"axe-core": "^4.10.2",
"axe-playwright": "^2.0.3",
"ci-info": "^4.1.0",
"dotenv": "^16.4.7",
"dotenv-cli": "^7.4.4",
"dotenv-expand": "^12.0.1",
"eslint": "^9.16.0",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-plugin-check-file": "^2.8.0",
"globals": "^15.13.0",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.11",
"npm-run-all2": "^7.0.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"schema-dts": "^1.1.2",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.11.0",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "^1.2.0",
"typescript": "^5.7.2"
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">=0.75%",
"not dead",
"not op_mini all"
]
},
"lint-staged": {
"*.@(js|ts|tsx)": [
"eslint --cache --fix",
"prettier --cache --cache-location ./.prettiercache --write"
],
"*.@(css)": [
"stylelint --cache --fix",
"prettier --cache --cache-location ./.prettiercache --write"
],
"*.!(css|js|ts|tsx),!./@(content|public)/**": "prettier --cache --cache-location ./.prettiercache --ignore-unknown --write"
},
"postcss": {
"plugins": {
"tailwindcss": {}
}
},
"prettier": "@acdh-oeaw/prettier-config",
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"stylelint": {
"extends": "@acdh-oeaw/stylelint-config"
}
}