generated from sonofmagic/monorepo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
104 lines (104 loc) · 3.21 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "icestack",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "turbo run build --filter=./packages/* --filter=./plugins/* --filter=./presets/*",
"build:plugins": "turbo run build --filter=./plugins/*",
"build:all": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"_test": "vitest run --coverage.enabled --coverage.all=false",
"test": "turbo run test --filter=./packages/* --filter=./plugins/*",
"test:dev": "turbo run test:dev --filter=./packages/* --filter=./plugins/*",
"release": "changeset",
"pre": "pnpm build && pnpm _test",
"publish-packages": "pnpm pre && changeset version && changeset publish",
"preinstall": "npx only-allow pnpm",
"sync": "turbo run sync",
"bump": "bumpp -r",
"cpmd": "node scripts/cp-md.js",
"prepare": "husky",
"script:init": "monorepo init",
"script:sync": "monorepo sync",
"script:clean": "monorepo clean",
"script:mirror": "monorepo mirror"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/prompt-cli": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@icebreakers/eslint-config": "^0.6.1",
"@icebreakers/monorepo": "^0.6.10",
"@icebreakers/stylelint-config": "^0.1.2",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/fs-extra": "^11.0.4",
"@types/get-value": "^3.0.5",
"@types/klaw": "^3.0.6",
"@types/lint-staged": "^13.3.0",
"@types/lodash": "^4.17.12",
"@types/lodash-es": "^4.17.12",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.7.7",
"@types/object-hash": "^3.0.6",
"@types/postcss-js": "^4.0.4",
"@types/serialize-javascript": "^5.0.4",
"@types/set-value": "^4.0.3",
"@vitest/coverage-v8": "~2.1.3",
"ci-info": "^4.0.0",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"dedent": "^1.5.3",
"defu": "^6.1.4",
"del": "^8.0.0",
"del-cli": "^6.0.0",
"eslint": "^9.13.0",
"execa": "^9.4.1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"get-value": "^3.0.1",
"husky": "^9.1.6",
"klaw": "^4.1.0",
"klaw-sync": "^6.0.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"merge": "^2.1.1",
"micromatch": "^4.0.8",
"object-hash": "^3.0.0",
"only-allow": "^1.2.1",
"pathe": "^1.1.2",
"pkg-types": "^1.2.1",
"postcss": "^8.4.47",
"postcss-parser-tests": "^8.8.0",
"rimraf": "^6.0.1",
"sass": "^1.80.3",
"sass-true": "^8.1.0",
"serialize-javascript": "^6.0.2",
"set-value": "^4.1.0",
"svg64": "^2.0.0",
"tailwind-config-viewer": "^2.0.4",
"tailwindcss": "3.4.14",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.0",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"turbo": "^2.2.1",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"vite": "^5.4.9",
"vitest": "~2.1.3",
"yaml": "^2.6.0"
}
}