-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.45 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.45 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
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
{
"name": "o2s",
"private": true,
"scripts": {
"prepare": "husky",
"predev": "turbo build -F=!{./apps/*} -F=!{./packages/cli/*}",
"dev": "turbo watch dev -F={./apps/*}",
"watch:apps": "turbo run dev -F={./apps/*}",
"watch:deps": "turbo watch build -F=!{./apps/*}",
"build": "turbo build",
"start": "turbo start",
"format": "turbo format",
"lint": "turbo lint -- --max-warnings=0",
"test": "turbo test && vitest run --project=storybook",
"view-report": "turbo run view-report",
"generate": "turbo gen",
"generate:postman-collection": "node scripts/generate-postman-collection.mjs",
"eject-block": "ts-node ./scripts/cli.ts eject-block",
"docs": "turbo start --filter=@o2s/docs",
"changeset": "changeset",
"version-packages": "changeset version",
"prerelease": "turbo run build",
"release": "changeset publish",
"update-deps": "npm-check-updates --format group --workspaces --interactive",
"find-missing-deps": "turbo boundaries",
"storybook": "storybook dev -p 6006",
"prebuild-storybook": "turbo build -F=!{./apps/*} -F=!{./packages/cli/*}",
"build-storybook": "storybook build",
"test:storybook": "vitest --project=storybook",
"clean": "npm exec --workspaces -- rimraf node_modules dist .next .turbo && rimraf node_modules dist .next .turbo",
"clean:output": "npm exec --workspaces -- rimraf dist .next .turbo && rimraf dist .next .turbo"
},
"engines": {
"node": ">=22"
},
"packageManager": "npm@11.11.1",
"workspaces": [
"apps/*",
"packages/*",
"packages/configs/*",
"packages/integrations/*",
"packages/utils/*",
"packages/cli/*",
"packages/blocks/*",
"packages/blocks/*/*",
"packages/modules/*"
],
"devDependencies": {
"@commitlint/cli": "^20.4.4",
"@commitlint/config-conventional": "^20.4.4",
"@playwright/test": "^1.58.2",
"@storybook/addon-a11y": "^10.2.19",
"@storybook/addon-docs": "^10.2.19",
"@storybook/addon-themes": "^10.2.19",
"@storybook/addon-vitest": "^10.2.19",
"@storybook/nextjs-vite": "^10.2.19",
"@turbo/gen": "^2.8.11",
"@types/cli-progress": "^3.11.6",
"@types/fs-extra": "^11.0.4",
"@types/prompts": "^2.4.9",
"@types/unzipper": "^0.10.11",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"dotenv": "^17.3.1",
"fs-extra": "^11.3.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"msw": "^2.12.11",
"msw-storybook-addon": "^2.0.6",
"npm-check-updates": "^19.6.3",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"simple-git": "^3.32.3",
"storybook": "^10.2.19",
"syncpack": "^14.0.0-canary.1",
"turbo": "^2.8.11",
"typescript": "5.9.3",
"unplugin-swc": "^1.5.9",
"vite": "^7.3.1",
"vite-plugin-svgr": "^4.5.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@changesets/cli": "^2.29.8",
"@types/prompts": "^2.4.9",
"cli-progress": "^3.12.0",
"commander": "^14.0.3",
"prompts": "^2.4.2",
"unzipper": "^0.12.3"
}
}