-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "jamstack-scripts",
"version": "1.1.0",
"description": "CRUD scripts for Headless services",
"main": "main.ts",
"packageManager": "[email protected]",
"scripts": {
"dev": "node --env-file=.env -r ts-node/register main.ts",
"lint:fix": "eslint --ext .js --fix",
"format:prettier": "prettier --write \"src/**/*.{ts,json,md}\"",
"prepare": "husky install"
},
"keywords": [],
"author": "Ignacio Miranda Figueroa",
"license": "MIT",
"engines": {
"node": "20.10.0"
},
"dependencies": {
"@commercetools/importapi-sdk": "^5.4.0",
"@commercetools/platform-sdk": "7.10.0-alpha-customer-groups.2",
"@commercetools/sdk-client-v2": "^2.5.0",
"@inquirer/prompts": "^5.0.1",
"algoliasearch": "4.23.3",
"contentful-management": "11.25.0",
"csv": "6.3.8",
"csv-parser": "3.0.0",
"csv-stringify": "6.4.6",
"stytch": "10.15.1"
},
"devDependencies": {
"@types/inquirer": "9.0.7",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.7.0",
"eslint": "9.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "17.2.1",
"eslint-plugin-promise": "6.1.1",
"husky": "9.0.11",
"inquirer": "9.2.19",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier -w"
]
}
}