-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
84 lines (84 loc) · 3.81 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"analyze": "npm run -w packages/portal analyze",
"build": "npm run -w packages/portal build",
"cache": "npm run -w packages/portal cache",
"dev": "npm run -w packages/portal dev",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint --no-fix --ignore-path .gitignore packages",
"start:inspect": "npm run -w packages/portal start:inspect",
"start": "npm run -w packages/portal start",
"styleguide": "npm run --prefix styleguide start",
"styleguide:build": "npm run --prefix styleguide build",
"styleguide:ci": "npm --prefix styleguide ci",
"styleguide:install": "npm --prefix styleguide install",
"stylelint": "stylelint \"**/*.scss\" \"**/*.vue\" --config .stylelintrc.cjs",
"test:e2e": "npm run test:e2e:init && npm run test:e2e:run",
"test:e2e:init": "touch tests/e2e/docker/nightwatch/.env tests/e2e/docker/nightwatch-visual/.env",
"test:e2e:run": "docker compose -f ./tests/e2e/docker/docker-compose.yml run --rm nightwatch-features",
"test:coverage": "npm run test:unit -- --coverage",
"test:coverage:ci": "npm run test:unit -- --coverage --maxWorkers 2",
"test:stack:build": "docker compose -f ./tests/e2e/docker/docker-compose.yml build",
"test:stack:down": "docker compose -f ./tests/e2e/docker/docker-compose.yml down",
"test:stack:rebuild": "docker compose -f ./tests/e2e/docker/docker-compose.yml down && npm run test:stack:build",
"test:stack:start": "docker compose -f ./tests/e2e/docker/docker-compose.yml start app nginx chrome-en chrome-ja chrome-nl",
"test:stack:stop": "docker compose -f ./tests/e2e/docker/docker-compose.yml stop app nginx chrome-en chrome-ja chrome-nl",
"test:unit": "node --expose-gc --no-compilation-cache node_modules/jest/bin/jest.js --config jest.config.js",
"test:visual": "touch tests/e2e/docker/nightwatch-visual/.env && docker compose -f ./tests/e2e/docker/docker-compose.yml run --rm nightwatch-visual",
"test": "npm run lint && npm run stylelint && npm run test:unit && npm run -w packages/portal test:size && npm run test:stack:rebuild && npm run test:e2e",
"version": "node bin/sonar-project-version.js && git add sonar-project.properties"
},
"resolutions": {
"@europeana/contentful": "link:./packages/contentful",
"@europeana/i18n": "link:./packages/i18n",
"@europeana/mirador": "link:./packages/mirador",
"@europeana/oembed": "link:./packages/oembed",
"@europeana/portal": "link:./packages/portal",
"@europeana/style": "link:./packages/style",
"@europeana/vue-router-query": "link:./packages/vue-router-query",
"@europeana/vue-session": "link:./packages/vue-session",
"@europeana/vue-visible-on-scroll": "link:./packages/vue-visible-on-scroll"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@vue/test-utils": "^1.3.0",
"@vue/vue2-jest": "^29.2.3",
"babel-jest": "^29.5.0",
"eslint": "^8.38.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-vue": "^8.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lerna": "^7.2.0",
"postcss-scss": "^4.0.5",
"stylelint": "^14.1.0",
"stylelint-config-recommended-scss": "^7.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"vue": "^2.7.10"
},
"contributors": [
"Richard Doe <[email protected]>",
"Lutz Biedinger <[email protected]>",
"Mirjam Verloop <[email protected]>",
"Leonie Peters <[email protected]>",
"Alan Sutherland <[email protected]>"
],
"engines": {
"node": "^18",
"npm": "^9 || ^10"
},
"keywords": [
"code4lib"
],
"license": "EUPL-1.2",
"repository": {
"type": "git",
"url": "https://github.com/europeana/portal.js.git"
},
"type": "module"
}