forked from Apicurio/apicurio-studio-react-poc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.29 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
{
"description": "Apicurio react UI",
"repository": "https://github.com/dlabaj/apicurio-studio-react-poc.git",
"license": "Apache-2.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@patternfly/react-core",
"**/@patternfly/react-core/**",
"**/patternfly",
"**/@rh-uxd/integration-core",
"**/@rh-uxd/integration-core/**",
"**/@rh-uxd/integration-react",
"**/@rh-uxd/integration-react/**",
"**/rh-uxd",
"**/react-monaco-editor",
"**/monaco-editor"
]
},
"scripts": {
"clean": "lerna run clean",
"prebuild": "./init-dev.sh",
"build": "lerna run build",
"lint": "lerna run lint",
"start:studio": "lerna run start --scope=@apicurio/studio",
"test": "echo \"TODO: Add tests\" && exit 0 "
},
"devDependencies": {
"lerna": "^3.20.2",
"typescript": "^3.8.3",
"typescript-tslint-plugin": "^0.5.5",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"name": "apicurio-studio-react-poc",
"dependencies": {
"axios": "^0.19.2",
"babel-preset-es2015": "^6.24.1",
"js-base64": "^2.5.2",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-monaco-editor": "^0.36.0"
}
}