-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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
{
"name": "web-scripts",
"version": "1.2.0",
"description": "CRUD scripts for different third party platforms.",
"main": "./src/main.ts",
"packageManager": "pnpm@10.10.0",
"scripts": {
"dev": "node --env-file=.env -r ts-node/register ./src/main.ts",
"lint": "npx @biomejs/biome lint --write ./src",
"format": "npx @biomejs/biome check --write --organize-imports-enabled=true ./src"
},
"keywords": [],
"author": "Ignacio Miranda Figueroa",
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"@commercetools/importapi-sdk": "6.1.1",
"@commercetools/platform-sdk": "8.8.0",
"@commercetools/sdk-client-v2": "3.0.0",
"@inquirer/prompts": "7.5.0",
"algoliasearch": "5.24.0",
"cloudinary": "2.6.0",
"contentful": "11.5.18",
"contentful-management": "11.52.2",
"csv": "6.3.11",
"csv-parser": "3.2.0",
"csv-stringify": "6.5.2",
"stytch": "12.19.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/inquirer": "9.0.7",
"@types/node": "22.15.3",
"husky": "9.1.7",
"inquirer": "12.6.0",
"lint-staged": "15.5.1",
"ts-node": "10.9.2",
"typescript": "5.8.3"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,json,jsonc}": [
"biome check --files-ignore-unknown=true",
"biome check --write --no-errors-on-unmatched",
"biome lint --write --no-errors-on-unmatched --files-ignore-unknown=true",
"biome format --write --no-errors-on-unmatched"
]
}
}