-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.3 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
{
"name": "storefront-shop-adapter",
"version": "0.0.0",
"description": " ",
"scripts": {
"clean": "turbo run clean",
"build": "turbo run build",
"lint:eslint": "turbo run lint:eslint",
"lint:tsc": "turbo run lint:tsc",
"test": "turbo run test",
"prepare": "husky install",
"lint-staged": "lint-staged",
"commitlint": "commitlint",
"create-new-shop-provider": "node ./cli/create-new-shop-provider/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MakairaIO/storefront-shop-adapter.git"
},
"keywords": [
"storefront",
"makaira",
"shop",
"adapter",
"oxid",
"shopify",
"plentymarkets",
"local"
],
"author": "Jonas Embach <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/MakairaIO/storefront-shop-adapter/issues"
},
"homepage": "https://github.com/MakairaIO/storefront-shop-adapter#readme",
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.5",
"@types/debug": "4.1.7",
"@types/jest": "28.1.4",
"@types/node-fetch": "2.6.2",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"commitlint": "17.0.3",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.4.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.8.2",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.1",
"is-ci": "3.0.1",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prettier-plugin-sh": "0.12.8",
"rimraf": "3.0.2",
"semantic-release-monorepo": "7.0.5",
"ts-jest": "28.0.7",
"turbo": "1.4.3",
"typescript": "4.7.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"workspaces": [
"packages/*"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\\\.ts?$": "ts-jest"
},
"transformIgnorePatterns": [
"./node_modules/"
],
"globals": {
"ts-jest": {
"diagnostics": false
}
}
}
}