-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.27 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
51
52
53
54
55
{
"name": "faststore",
"description": "Digital commerce toolkit for frontend developers.",
"repository": {
"type": "git",
"url": "https://github.com/vtex/faststore"
},
"license": "MIT",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build --log-order=grouped && turbo run generate --log-order=grouped",
"build:codesandbox": "turbo run build --filter @faststore/cli... && turbo run generate --log-order=grouped",
"dev": "turbo run dev --parallel --no-cache",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"stylelint": "stylelint \"**/*.scss\"",
"stylelint:fix": "stylelint \"**/*.scss\" --fix",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"ci:dkcicd": "pnpm build && pnpm lint && pnpm size && pnpm test:coverage && mkdir -p coverage && pnpm dlx lcov-result-merger 'packages/*/coverage/lcov.info' coverage/lcov.info --prepend-source-files",
"size": "turbo run size",
"release": "lerna version --conventional-commits --conventional-graduate --yes && pnpm -r publish --access public --no-git-checks",
"release:dev": "lerna version --conventional-commits --conventional-prerelease --preid=dev --force-publish --yes && pnpm -r publish --access public --tag dev --no-git-checks",
"release:v3": "lerna version --conventional-commits --yes && pnpm -r publish --access public --tag v3-latest --no-git-checks",
"release:verify": "node ./scripts/verify-publish-manifests.mjs",
"clean": "turbo run clean && rm -rf node_modules",
"check:spec-kit": "node ./scripts/check-spec-kit.mjs",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"husky": "9.1.7",
"lerna": "^9.0.3",
"lint-staged": "15.4.3",
"prettier": "^3.1.0",
"stylelint": "^14.6.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.0.1",
"turbo": "^2.3.4",
"typescript": "catalog:"
},
"version": "0.0.0",
"packageManager": "pnpm@10.28.0",
"lint-staged": {
"*.{ts,js,tsx,jsx,json}": "pnpm lint:fix",
"*.scss": "stylelint --fix"
},
"dependencies": {
"axios": "^1.8.2"
}
}