-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.44 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
90
91
92
93
94
95
{
"name": "react-losen",
"version": "2.0.0-12",
"description": "A super customisable Wizard for React and React Native",
"homepage": "https://docs-geycgwirqi.now.sh/",
"main": "src/index.js",
"keywords": [
"react",
"wizard"
],
"repository": {
"type": "git",
"url": "https://github.com/otovo/react-losen.git"
},
"license": "MIT",
"scripts": {
"docs:build": "cp README.md ./pages/_index.mdx && docz build",
"eslint": "eslint . --cache",
"dev": "docz dev",
"test": "jest --setupTestFrameworkScriptFile=./setupJest.js",
"tdd": "jest --setupTestFrameworkScriptFile=./setupJest.js --watch",
"build": "pack build",
"publish": "pack publish"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/pkg/"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"*.test.js"
]
}
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-node"
],
[
"pika-plugin-minify"
]
]
},
"resolutions": {
"docz-core": "^0.13.7"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@pika/pack": "^0.3.6",
"@pika/plugin-build-node": "^0.3.14",
"@pika/plugin-build-web": "^0.3.14",
"@pika/plugin-standard-pkg": "^0.3.14",
"babel-eslint": "^10.0.1",
"docz": "^0.13.7",
"docz-plugin-css": "^0.11.0",
"docz-theme-default": "^0.13.7",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-otovo": "https://github.com/otovo/eslint-config-otovo.git",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-flowtype": "^3.4.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^2.3.0",
"flow-bin": "^0.96.0",
"jest": "^24.1.0",
"pika-plugin-minify": "^0.1.0",
"prettier": "^1.16.4",
"react-dom": "16",
"tachyons": "^4.11.1"
},
"peerDependencies": {
"react": "^16.8.1"
},
"dependencies": {
"prop-types": "^15.7.1"
}
}