This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
89 lines (89 loc) · 2.78 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
{
"name": "storybook-addon-next",
"version": "0.0.0-development",
"author": "ryanclementshax",
"license": "MIT",
"description": "A no config Storybook addon that makes Next.js features just work in Storybook",
"keywords": [
"storybook",
"addon",
"next",
"nextjs"
],
"homepage": "https://github.com/RyanClementsHax/storybook-addon-next#readme",
"repository": {
"type": "git",
"url": "https://github.com/RyanClementsHax/storybook-addon-next.git"
},
"bugs": {
"url": "https://github.com/RyanClementsHax/storybook-addon-next/issues"
},
"storybook": {
"displayName": "Next.js + Storybook",
"icon": "https://camo.githubusercontent.com/92ec9eb7eeab7db4f5919e3205918918c42e6772562afb4112a2909c1aaaa875/68747470733a2f2f6173736574732e76657263656c2e636f6d2f696d6167652f75706c6f61642f76313630373535343338352f7265706f7369746f726965732f6e6578742d6a732f6e6578742d6c6f676f2e706e67"
},
"main": "dist/preset.js",
"files": [
"dist"
],
"scripts": {
"watch": "tsc --watch",
"build": "yarn clean && tsc",
"clean": "tsc --build --clean",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write",
"format:all": "yarn format .",
"lint": "eslint --fix",
"lint:all": "yarn lint .",
"test:all": "yarn lint:all && yarn type-check",
"prepare": "husky install",
"prepublishOnly": "yarn build",
"release": "semantic-release"
},
"dependencies": {
"@storybook/addons": "^6.4.10",
"css-loader": "^6.5.1",
"image-size": "^1.0.0",
"loader-utils": "^3.2.0",
"postcss-loader": "^6.2.1",
"resolve-url-loader": "^5.0.0",
"sass-loader": "^12.4.0",
"semver": "^7.3.5",
"style-loader": "^3.3.1"
},
"devDependencies": {
"@storybook/addon-actions": "^6.4.13",
"@storybook/core-common": "^6.4.13",
"@types/babel__core": "^7.1.18",
"@types/loader-utils": "^2.0.3",
"@types/react": "^17.0.38",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-typescript": "^3.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"next": "^12.0.7",
"nextv9": "npm:next@9.0.0",
"nextv10": "npm:next@10.0.0",
"nextv11": "npm:next@11.0.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"semantic-release": "^18.0.1",
"ts-jest": "^27.1.1",
"tslib": "^2.3.1",
"typescript": "^4.5.3",
"webpack": "^5.65.0"
},
"peerDependencies": {
"@storybook/addons": "^6.0.0",
"@storybook/addon-actions": "^6.0.0",
"next": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
}
}