forked from lifeiscontent/storybook-addon-next-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.93 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
{
"author": {
"name": "Aaron Reisman",
"email": "[email protected]",
"url": "https://lifeiscontent.net/"
},
"repository": {
"type": "git",
"url": "https://github.com/gogaille/storybook-addon-next-router.git"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@storybook/addon-actions": "6.3.4",
"@storybook/addons": "6.3.4",
"@types/jest": "26.0.24",
"babel-jest": "27.0.6",
"browserslist": "^4.16.6",
"husky": "^7.0.0",
"next": "11.0.2-canary.9",
"react": "17.0.2",
"react-dom": "17.0.2",
"tsdx": "0.14.1",
"tslib": "2.3.0",
"typescript": "4.3.5"
},
"engines": {
"node": ">=10"
},
"files": [
"dist",
"src"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/storybook-addon-next-router.esm.js",
"name": "@gogaille/storybook-addon-next-router",
"peerDependencies": {
"@storybook/addon-actions": "^6.0.0",
"@storybook/addons": "^6.0.0",
"next": "^11.2.0",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build && husky install"
},
"typings": "dist/index.d.ts",
"version": "4.0.0",
"keywords": [
"storybook-addon",
"data-state",
"popular",
"storybook",
"next",
"next.js",
"nextjs"
],
"description": "Use Next.js Router in your Storybook stories.",
"storybook": {
"icon": "https://camo.githubusercontent.com/92ec9eb7eeab7db4f5919e3205918918c42e6772562afb4112a2909c1aaaa875/68747470733a2f2f6173736574732e76657263656c2e636f6d2f696d6167652f75706c6f61642f76313630373535343338352f7265706f7369746f726965732f6e6578742d6a732f6e6578742d6c6f676f2e706e67",
"displayName": "Next.js router"
},
"dependencies": {}
}