-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 3.04 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
{
"name": "wpn-static",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint:check": "eslint . --cache --ext .js,.ts --ignore-path .gitignore",
"format:check": "prettier . \"!./html/**\" --cache --check --ext .js,.ts --ignore-path .gitignore",
"compile-scss": "rm -f html/css/* && sass --update --style=expanded scss:html/css",
"build": "pnpm run compile-scss && vite build -l info && mv html/js/wpn_utils/manifest.json manifest.json",
"e2e:run_all_tests": "npx playwright test --project=chromium",
"e2e:test_edition_view": "npx playwright test e2e/specs/edition_view.spec.ts --project=chromium",
"e2e:test_edition_short_info_comment": "npx playwright test e2e/specs/edition_view_short_infos/edition_view_short_info_comment.spec.ts --project=chromium",
"e2e:test_edition_short_info_person": "npx playwright test e2e/specs/edition_view_short_infos/edition_view_short_info_person.spec.ts --project=chromium",
"e2e:test_edition_short_info_quote": "npx playwright test e2e/specs/edition_view_short_infos/edition_view_short_info_quote.spec.ts --project=chromium",
"e2e:test_edition_detail_view_comment": "npx playwright test e2e/specs/edition_view_details/edition_view_detail_info_comment.spec.ts --project=chromium",
"e2e:test_edition_detail_view_person": "npx playwright test e2e/specs/edition_view_details/edition_view_detail_info_person.spec.ts --project=chromium",
"e2e:test_edition_detail_view_quote": "npx playwright test e2e/specs/edition_view_details/edition_view_detail_info_quote.spec.ts --project=chromium",
"e2e:test_register_list_view_person": "npx playwright test e2e/specs/register_views/register_list_view_person.spec.ts --project=chromium",
"e2e:test_register_list_view_quote": "npx playwright test e2e/specs/register_views/register_list_view_quote.spec.ts --project=chromium"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"anychart": "^8.12.1",
"bootstrap": "5.3.3",
"de-micro-editor": "^0.4.2",
"glob": "^11.0.0",
"instantsearch.js": "^4.74.0",
"mark.js": "^8.11.1",
"mirador": "3.3.0",
"openseadragon": "^5.0.0",
"typesense-instantsearch-adapter": "^2.8.0"
},
"devDependencies": {
"@acdh-oeaw/eslint-config": "^1.0.9",
"@acdh-oeaw/eslint-config-playwright": "^1.0.9",
"@acdh-oeaw/prettier-config": "^2.0.0",
"@playwright/test": "^1.45.1",
"@types/bootstrap": "^5.2.10",
"@types/node": "^20.14.10",
"@types/openseadragon": "^3.0.10",
"ci-info": "^4.0.0",
"sass": "^1.75.0",
"typescript": "^5.4.5",
"vite": "^5.3.3"
},
"eslintConfig": {
"extends": [
"@acdh-oeaw/eslint-config",
"@acdh-oeaw/eslint-config/strict",
"@acdh-oeaw/eslint-config-playwright"
]
},
"prettier": "@acdh-oeaw/prettier-config",
"type": "module",
"pnpm": {
"overrides": {
"braces@<3.0.3": ">=3.0.3",
"micromatch@<4.0.8": ">=4.0.8",
"vite@>=5.3.0 <5.3.6": ">=5.3.6",
"vite@>=5.3.0 <=5.3.5": ">=5.3.6",
"rollup@>=4.0.0 <4.22.4": ">=4.22.4"
}
}
}