This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
72 lines (72 loc) · 2.08 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
{
"author": {
"email": "aaron@lifeiscontent.net",
"name": "Aaron Reisman",
"url": "https://lifeiscontent.net/"
},
"dependencies": {
"tslib": "2.4.0"
},
"description": "Use Next.js Router in your Storybook stories.",
"devDependencies": {
"@storybook/addon-actions": "6.5.12",
"@storybook/addons": "6.5.12",
"@storybook/client-api": "6.5.12",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.1",
"next": "13.0.1",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.8.4"
},
"engines": {
"node": ">=10"
},
"files": [
"dist/**/*",
"README.md",
"*.js"
],
"keywords": [
"storybook-addon",
"data-state",
"popular"
],
"license": "MIT",
"main": "preset.js",
"name": "storybook-addon-next-router",
"peerDependencies": {
"@storybook/addon-actions": "^6.0.0",
"@storybook/addons": "^6.0.0",
"@storybook/client-api": "^6.0.0",
"next": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lifeiscontent/storybook-addon-next-router.git"
},
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint": "eslint .",
"prebuild": "npm run clean",
"prepare": "husky install",
"start": "npm run build --watch"
},
"storybook": {
"displayName": "Next.js router",
"icon": "https://camo.githubusercontent.com/92ec9eb7eeab7db4f5919e3205918918c42e6772562afb4112a2909c1aaaa875/68747470733a2f2f6173736574732e76657263656c2e636f6d2f696d6167652f75706c6f61642f76313630373535343338352f7265706f7369746f726965732f6e6578742d6a732f6e6578742d6c6f676f2e706e67"
},
"types": "dist/index.d.ts",
"version": "4.0.2"
}