forked from storybookjs/storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.85 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.85 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@storybook/angular",
"version": "10.0.0-beta.6",
"description": "Storybook for Angular: Develop, document, and test UI components in isolation",
"keywords": [
"storybook",
"storybook-framework",
"angular",
"component",
"components"
],
"homepage": "https://github.com/storybookjs/storybook/tree/next/code/frameworks/angular",
"bugs": {
"url": "https://github.com/storybookjs/storybook/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/storybook.git",
"directory": "code/frameworks/angular"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./builders/build-storybook": "./dist/builders/build-storybook/index.js",
"./builders/start-storybook": "./dist/builders/start-storybook/index.js",
"./client": "./dist/client/index.js",
"./client/config": "./dist/client/config.js",
"./client/docs/config": "./dist/client/docs/config.js",
"./client/preview-prod": "./dist/client/preview-prod.js",
"./node": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.js"
},
"./package.json": "./package.json",
"./preset": "./dist/preset.js",
"./server/framework-preset-angular-cli": "./dist/server/framework-preset-angular-cli.js",
"./server/framework-preset-angular-ivy": "./dist/server/framework-preset-angular-ivy.js"
},
"files": [
"builders.json",
"build-schema.json",
"start-schema.json",
"dist/**/*",
"template/cli/**/*",
"README.md",
"*.js",
"*.mjs",
"*.d.ts",
"!src/**/*"
],
"scripts": {
"check": "jiti ../../../scripts/check/check-package.ts",
"prep": "jiti ../../../scripts/build/build-package.ts"
},
"dependencies": {
"@storybook/builder-webpack5": "workspace:*",
"@storybook/global": "^5.0.0",
"telejson": "8.0.0",
"ts-dedent": "^2.0.0",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"webpack": "5"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^1.12.1",
"@angular-devkit/architect": "^0.1901.1",
"@angular-devkit/build-angular": "^19.1.1",
"@angular-devkit/core": "^19.1.1",
"@angular/animations": "^19.1.1",
"@angular/common": "^19.1.1",
"@angular/compiler": "^19.1.1",
"@angular/compiler-cli": "^19.1.1",
"@angular/core": "^19.1.1",
"@angular/forms": "^19.1.1",
"@angular/platform-browser": "^19.1.1",
"@angular/platform-browser-dynamic": "^19.1.1",
"@storybook/core-webpack": "workspace:*",
"@types/node": "^22.0.0",
"empathic": "^2.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"webpack": "5",
"zone.js": "^0.15.0"
},
"peerDependencies": {
"@angular-devkit/architect": ">=0.1800.0 < 0.2100.0",
"@angular-devkit/build-angular": ">=18.0.0 < 21.0.0",
"@angular-devkit/core": ">=18.0.0 < 21.0.0",
"@angular/animations": ">=18.0.0 < 21.0.0",
"@angular/cli": ">=18.0.0 < 21.0.0",
"@angular/common": ">=18.0.0 < 21.0.0",
"@angular/compiler": ">=18.0.0 < 21.0.0",
"@angular/compiler-cli": ">=18.0.0 < 21.0.0",
"@angular/core": ">=18.0.0 < 21.0.0",
"@angular/forms": ">=18.0.0 < 21.0.0",
"@angular/platform-browser": ">=18.0.0 < 21.0.0",
"@angular/platform-browser-dynamic": ">=18.0.0 < 21.0.0",
"rxjs": "^6.5.3 || ^7.4.0",
"storybook": "workspace:^",
"typescript": "^4.9.0 || ^5.0.0",
"zone.js": ">=0.14.0"
},
"peerDependenciesMeta": {
"@angular/animations": {
"optional": true
},
"@angular/cli": {
"optional": true
},
"zone.js": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"builders": "builders.json",
"gitHead": "a8e7fd8a655c69780bc20b9749d2699e45beae16"
}