-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
89 lines (89 loc) · 2.47 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
{
"name": "@open-rpc/playground",
"version": "0.0.0-development",
"homepage": "https://playground.open-rpc.org/",
"repository": {
"type": "git",
"url": "https://github.com/open-rpc/playground.git"
},
"bin": {
"open-rpc-playground": "./bin/cli.js"
},
"bugs": "https://github.com/open-rpc/playground/issues",
"license": "Apache-2.0",
"dependencies": {
"@etclabscore/monaco-add-json-schema-diagnostics": "^1.0.3",
"@etclabscore/react-monaco-editor": "^1.0.4",
"@material-ui/core": "4.9.8",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.47",
"@open-rpc/docs-react": "^1.2.6",
"@open-rpc/examples": "^1.3.3",
"@open-rpc/inspector": "^1.7.1",
"@open-rpc/meta-schema": "^1.13.13",
"@open-rpc/schema-utils-js": "^1.13.0",
"@use-it/interval": "^0.1.3",
"ajv": "^6.10.0",
"classnames": "^2.2.6",
"isomorphic-fetch": "^2.2.1",
"json-schema-empty": "^1.1.1",
"json-schema-ref-parser": "^6.1.0",
"jsonschema": "^1.2.4",
"lodash": "^4.17.21",
"monaco-editor": "^0.18.1",
"monaco-vim": "0.0.14",
"open": "^6.4.0",
"qs": "^6.11.0",
"react": "^16.12.0",
"react-app-polyfill": "^1.0.1",
"react-dom": "^16.12.0",
"react-json-view": "^1.19.1",
"react-markdown": "^4.1.0",
"react-split-pane": "^0.1.87",
"reusable": "^1.0.0-alpha.12",
"use-debounce": "^8.0.4"
},
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"lint": "tslint --fix -p .",
"test": "npm run lint && rescripts test"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@rescripts/cli": "0.0.13",
"@rescripts/utilities": "0.0.6",
"@types/classnames": "^2.2.9",
"@types/css-mediaquery": "^0.1.0",
"@types/jest": "^24.0.23",
"@types/json-schema": "^7.0.3",
"@types/lodash": "^4.14.185",
"@types/qs": "^6.9.7",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.8.4",
"css-mediaquery": "^0.1.2",
"monaco-editor-webpack-plugin": "^1.7.0",
"react-scripts": "^3.4.3",
"tslint": "^6.1.3",
"typescript": "^3.7.3"
},
"rescripts": [
"rescript-monaco"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"transformIgnorePatterns": [
"node_modules/(?!(monaco-editor)/)",
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
]
}
}