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
|
{
"name": "onap-clamp-ui",
"version": "4.1.0-SNAPSHOT",
"description": "ONAP Clamp Loop Designer UI",
"author": "ONAP Clamp Team",
"license": "Apache-2.0",
"homepage": "wiki.onap.org",
"publishConfig": {
"registry": "https://nexus3.onap.org/repository/npm.snapshot/"
},
"main": "index.js",
"proxy": "http://localhost:8080",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom --watchAll=false",
"eject": "react-scripts eject",
"publish": "npm run publish"
},
"files": [
"src/*.js",
"src/*.png",
"src/api",
"src/components",
"src/theme"
],
"dependencies": {
"@json-editor/json-editor": "1.3.5",
"react": "16.8.0",
"react-dom": "16.8.0",
"react-scripts": "3.0.1",
"react-bootstrap": "1.0.0-beta.9",
"bootstrap-css-only": "4.3.1",
"styled-components": "4.3.2",
"react-router-dom": "5.0.1",
"react-select": "3.0.4"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0"
}
}
|