-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2 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
{
"name": "storybook-found-router",
"version": "1.1.0",
"description": "Storybook decorator for React components using Found routing",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel src -d lib --ignore '**/*.test.js'",
"coverage": "npm run testonly -- --coverage",
"format": "standard --fix",
"lint": "standard",
"precommit": "lint-staged && npm run testonly",
"prepublish": "npm run build",
"test": "npm run lint && npm run coverage",
"testonly": "jest --runInBand --verbose",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/santino/storybook-found-router.git"
},
"keywords": [
"storybook",
"react",
"router",
"found",
"farce"
],
"author": "Santino Puleio",
"license": "MIT",
"bugs": {
"url": "https://github.com/santino/storybook-found-router/issues"
},
"homepage": "https://github.com/santino/storybook-found-router",
"standard": {
"ignore": [
"/lib/"
],
"env": [
"jest"
]
},
"jest": {
"collectCoverageFrom": [
"src/**"
],
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/setupTests.js"
]
},
"lint-staged": {
"*.{js,jsx}": [
"standard --fix",
"git add"
]
},
"dependencies": {
"@storybook/addon-actions": "^5.3.21",
"@storybook/addon-links": "^5.3.21"
},
"devDependencies": {
"@storybook/react": "^5.3.21",
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"farce": "^0.4.5",
"found": "^0.5.10",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"standard": "^16.0.3"
},
"peerDependencies": {
"farce": "^0.4.0",
"found": "^0.5.0",
"prop-types": "^15.7.0",
"react": "*"
}
}