-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.68 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.68 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
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
{
"name": "@unchainedshop/engine",
"description": "Unchained Engine",
"version": "5.0.0-alpha.2",
"license": "EUPL-1.2",
"private": "true",
"homepage": "https://unchained.shop",
"repository": {
"type": "git",
"url": "git+https://github.com/unchainedshop/unchained.git"
},
"type": "module",
"contributors": [
"Vedran Rudelj <vedran@unchained.shop> (https://unchained.shop)",
"Pascal Kaufmann <pascal@unchained.shop> (https://unchained.shop)",
"Marco Wettstein <maw@panter.ch>",
"Simon Emanuel Schmid <simon@unchained.shop> (https://unchained.shop)",
"Mikael Araya Mengistu <mikael@unchainewd.shop> (https://unchained.shop)"
],
"bugs": {
"url": "https://github.com/unchainedshop/unchained/issues"
},
"engineStrict": true,
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"workspaces": [
"packages/logger",
"packages/utils",
"packages/mongodb",
"packages/events",
"packages/file-upload",
"packages/roles",
"packages/shared",
"packages/core-countries",
"packages/core-currencies",
"packages/core-languages",
"packages/core-events",
"packages/core-files",
"packages/core-users",
"packages/core-bookmarks",
"packages/core-delivery",
"packages/core-payment",
"packages/core-quotations",
"packages/core-products",
"packages/core-assortments",
"packages/core-filters",
"packages/core-orders",
"packages/core-warehousing",
"packages/core-worker",
"packages/core-enrollments",
"packages/core",
"packages/api",
"packages/plugins",
"packages/ticketing",
"packages/platform",
"examples/kitchensink",
"examples/kitchensink-express",
"examples/minimal",
"examples/oidc",
"examples/ticketing",
"admin-ui"
],
"scripts": {
"typedoc": "typedoc --entryPointStrategy packages ./packages/* --out ./typedocs && rm -Rf ./docs/static/types && mv ./typedocs ./docs/static/types",
"lint": "eslint --fix .",
"test": "node --no-warnings --env-file .env.tests --env-file-if-exists=.env --test-isolation=none --test-force-exit --test-global-setup=tests/helpers.js --test --test-concurrency=1 'packages/**/*.test.ts' 'tests/*.test.*'",
"test:coverage": "node --no-warnings --env-file .env.tests --env-file-if-exists=.env --test-isolation=none --test-force-exit --test-global-setup=tests/helpers.js --test --test-concurrency=1 --experimental-test-coverage 'packages/**/*.test.ts' 'tests/*.test.*'",
"test:run:unit": "node --test 'packages/**/*.test.ts'",
"test:run:integration": "node --no-warnings --env-file .env.tests --env-file-if-exists=.env --test-isolation=none --test-force-exit --test-global-setup=tests/helpers.js --test --test-concurrency=1 'tests/*.test.*'",
"dev": "run-p dev:*",
"dev:adminui": "cd admin-ui && npm run dev",
"dev:kitchensink": "cd examples/kitchensink && npm run dev",
"dev:watch": "tsc --build -w --preserveWatchOutput",
"update-version": "npm version --no-git-tag-version --workspaces --include-workspace-root",
"clean": "tsc --build --clean",
"build": "run-p build:*",
"build:packages": "npm run clean && tsc --build",
"build:admin-ui": "cd admin-ui && npm run build"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/node": "^25.0.2",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"graphql": "^16.12.0",
"mongodb": "^7.0.0",
"mongodb-memory-server": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4",
"typedoc": "^0.28.15",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0"
},
"trustedDependencies": [
"@mongodb-js/zstd"
]
}