-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.95 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.95 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "react-jsonschema-inspector",
"version": "5.0.1",
"description": "View component for traversing/searching in a JSON Schema",
"homepage": "https://CarstenWickner.github.io/react-jsonschema-inspector/?path=/docs/inspector--show-case",
"author": "Carsten Wickner",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CarstenWickner/react-jsonschema-inspector.git"
},
"main": "dist/index.js",
"module": "dist/react-jsonschema-inspector.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test",
"lint": "dts lint src test",
"prepare": "npm run build",
"storybook": "start-storybook -p 9001",
"build-storybook": "build-storybook -o docs",
"predeploy": "rm -rf docs && npm run lint && npm run test --bail && npm run build-storybook",
"deploy": "gh-pages -d docs",
"prepublishOnly": "rm -rf dist && npm run lint && npm run test --bail && npm run build && npm run build-storybook"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=16"
},
"prettier": {
"arrowParens": "always",
"endOfLine": "lf",
"printWidth": 150,
"semi": true,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-docs": "^6.3.10",
"@storybook/addon-essentials": "^6.3.10",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.3.10",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addons": "^6.3.10",
"@storybook/react": "^6.3.10",
"@storybook/theming": "^6.3.10",
"@types/enzyme": "^3.10.9",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "~27.0.1",
"@types/json-schema": "^7.0.9",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.escaperegexp": "^4.1.6",
"@types/lodash.isequal": "^4.5.5",
"@types/prop-types": "^15.7.2",
"@types/react": "^17.0.26",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.3.6",
"babel-loader": "^8.2.2",
"dts-cli": "^0.17.1",
"enzyme": "~3.11.0",
"enzyme-adapter-react-16": "~1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"identity-obj-proxy": "^3.0.0",
"node-sass": "^6.0.1",
"postcss": "^8.3.8",
"postcss-flexbugs-fixes": "^5.0.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-is": "^17.0.2",
"rollup-plugin-postcss": "^4.0.1",
"sass-loader": "^10.0.0",
"size-limit": "^5.0.5",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"classnames": "^2.3.1",
"lodash.debounce": "^4.0.8",
"lodash.escaperegexp": "^4.1.2",
"lodash.isequal": "^4.5.0",
"memoize-one": "^5.2.1"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.ts"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(scss)$": "identity-obj-proxy"
},
"clearMocks": true,
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
2493,
2532
]
}
}
}
},
"keywords": [
"react",
"jsonschema",
"schema",
"viewer",
"inspector"
]
}