-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
71 lines (71 loc) · 2.23 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
{
"name": "cloudcommerce",
"type": "module",
"version": "2.35.2",
"description": "Open fair-code headless commerce platform: API-first, microservices based, event driven and cloud native",
"main": "packages/api/lib/index.js",
"author": "E-Com Club Softwares para E-commerce <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18",
"pnpm": ">=7 <9"
},
"files": [
"/action.yml",
"/CHANGELOG.md",
"/scripts/*"
],
"scripts": {
"fix-install": "bash scripts/pre-install.sh && pnpm i",
"postinstall": "husky && pnpm run -r prepare-monorepo",
"new-pkg": "bash scripts/new-package.sh",
"build": "turbo run build --filter='!./ecomplus-stores/**'",
"build:apps": "turbo run build --filter='./packages/{apps/**,modules}'",
"test": "turbo run test --filter='!./ecomplus-stores/**' --filter='!./packages/{apps/**,modules}'",
"test:apps": "turbo run test --filter='./packages/{apps/**,modules}'",
"release": "bash scripts/version-and-release.sh",
"store:run": "pnpm build && npm --prefix \"store\" run",
"start": "pnpm store:run start",
"serve": "pnpm store:run serve",
"deploy": "pnpm store:run deploy",
"setup": "pnpm store:run setup:quiet"
},
"lint-staged": {
"packages/storefront/**/*.{ts,vue,astro}": "eslint -c ./packages/eslint/storefront.staged.eslintrc.cjs --fix",
"packages/!(storefront)/**/*.ts": "eslint --fix"
},
"commit-and-tag-version": {
"scripts": {
"precommit": "sleep 1 && git add packages/**/package.json"
}
},
"devDependencies": {
"@cloudcommerce/eslint": "workspace:*",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/rules": "^19.6.0",
"@types/node": "^18.19.68",
"commit-and-tag-version": "^12.5.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"turbo": "^2.3.3",
"typescript": "~5.7.2",
"uglify-js": "^3.19.3",
"vite": "^5.4.11",
"vitest": "^2.1.8",
"zx": "^8.2.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@nuxt/kit",
"@babel/core"
]
}
},
"packageManager": "[email protected]"
}