-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.06 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.06 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
{
"name": "@labdigital/commercetools-mock",
"version": "3.0.0-beta.3",
"license": "MIT",
"author": "Michael van Tellingen",
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./sqlite": "./dist/storage/sqlite.mjs"
},
"imports": {
"#src/*": "./src/*",
"#vendor/*": "./vendor/*"
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"typings": "dist/index.d.mts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdown",
"build:server": "tsdown src/server.ts --platform=node",
"check": "biome check && tsc",
"format": "biome check --fix",
"lint": "biome check",
"publish:ci": "pnpm build && pnpm changeset publish",
"publish:version": "pnpm changeset version && pnpm format",
"start": "node --experimental-strip-types --watch src/server.ts",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"test:watch": "vitest --watch",
"generate:schemas": "node --experimental-strip-types scripts/generate-schemas.ts"
},
"dependencies": {
"@fastify/formbody": "8.0.2",
"basic-auth": "2.0.1",
"decimal.js": "10.6.0",
"fastify": "5.7.4",
"light-my-request": "6.6.0",
"msw": "2.12.10",
"pino": "^10.3.1",
"qs": "6.15.0",
"uuid": "13.0.0",
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.0",
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@commercetools/platform-sdk": "8.24.0",
"@types/basic-auth": "1.1.8",
"@types/node": "24.11.0",
"@types/qs": "6.14.0",
"pino-pretty": "^13.1.3",
"@vitest/coverage-v8": "4.0.18",
"fishery": "2.4.0",
"timekeeper": "2.3.1",
"tsdown": "0.20.3",
"typescript": "5.9.3",
"vitest": "4.0.18",
"yaml": "^2.8.2"
},
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=20",
"pnpm": ">=10.8.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/labd/commercetools-node-mock.git"
},
"bugs": {
"url": "https://github.com/labd/commercetools-node-mock/issues"
},
"homepage": "https://github.com/labd/commercetools-node-mock#readme"
}