-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "keystonejs-ecommerce",
"version": "1.0.1",
"description": "An easy-to-use library built on KeystoneJS for managing and displaying product catalogs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:vlnevyhosteny/keystonejs-ecommerce.git",
"author": "Vladimír Nevyhoštěný <[email protected]>",
"license": "MIT",
"engines": {
"yarn": ">=1.22.10"
},
"scripts": {
"format": "prettier --config .prettierrc.js './**/*.ts' --write",
"prepare": "husky install",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"build": "tsc"
},
"dependencies": {
"@keystone-6/auth": "^7.0.0",
"@keystone-6/core": "^5.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"chalk": "^5.2.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"semantic-release": "^21.0.7",
"typescript": "^5.0.4"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"channel": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}