-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
106 lines (106 loc) · 4.05 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
{
"name": "@unchainedshop/engine",
"description": "Unchained Engine",
"version": "3.0.0-rc.15",
"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 <[email protected]> (https://unchained.shop)",
"Pascal Kaufmann <[email protected]> (https://unchained.shop)",
"Marco Wettstein <[email protected]>",
"Simon Emanuel Schmid <[email protected]> (https://unchained.shop)",
"Mikael Araya Mengistu <[email protected]> (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/keycloak"
],
"scripts": {
"typedoc": "typedoc --entryPointStrategy packages ./packages/* --out ./typedocs && mv ./typedocs ./docs/static/types",
"lint": "eslint packages tests --fix --ext=js --ext=ts",
"pretest": "npm run lint --silent",
"lint:ci": "eslint packages tests --ext=jsx --ext=js",
"test": "MONGO_MEMORY_SERVER_FILE=jest-mongodb-config.cjs node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --detectOpenHandles tests/*",
"test:ci": "npm run test:integration && npm run test:unit",
"test:integration": "MONGO_MEMORY_SERVER_FILE=jest-mongodb-config.cjs node --experimental-vm-modules node_modules/jest/bin/jest.js --ci --runInBand --forceExit tests/*",
"test:watch": "MONGO_MEMORY_SERVER_FILE=jest-mongodb-config.cjs DEBUG=jest-mongodb:* node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --watch --no-watchman --verbose tests/**",
"dev": "run-p --print-label dev:*",
"dev:kitchensink": "cd examples/kitchensink && npm run dev",
"dev:watch-packages": "workspaces-run --ignore '@unchainedshop/shared' --only-fs 'packages/**' --parallel -- npm run watch",
"update-version": "npm version --no-git-tag-version --workspaces --include-workspace-root",
"clean": "npm run clean --workspaces",
"build": "npm run prepublishOnly --workspaces --if-present",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js --ci --forceExit --config ./packages/unit-jest.config.js",
"test:unit-watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --watch --config ./packages/unit-jest.config.js"
},
"devDependencies": {
"@apollo/client": "^3.12.4",
"@shelf/jest-mongodb": "^4.3.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"dotenv-extended": "^2.9.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"graphql": "^16.10.0",
"jest": "^29.7.0",
"mongodb": "^6.12.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"workspaces-run": "^1.0.2"
},
"trustedDependencies": [
"@mongodb-js/zstd"
]
}