Remove legacy operational Policy
[clamp.git] / ui-react / package.json
1 {
2         "name": "onap-clamp-ui",
3         "version": "${project.version}",
4         "description": "ONAP Clamp Loop Designer UI",
5         "author": "ONAP Clamp Team",
6         "license": "Apache-2.0",
7         "publishConfig": {
8                 "registry": "${npm.publish.url}"
9         },
10         "main": "index.js",
11         "proxy": "https://localhost:8443",
12         "scripts": {
13                 "start": "HTTPS=true react-scripts start",
14                 "build": "react-scripts build",
15                 "test": "jest",
16                 "test:watch": "jest --watch",
17                 "test:coverage": "jest --coverage",
18                 "eject": "react-scripts eject"
19         },
20         "files": [
21                 "src/*.js",
22                 "src/*.png",
23                 "src/api",
24                 "src/components",
25                 "src/theme"
26         ],
27         "dependencies": {
28                 "@json-editor/json-editor": "1.4.0-beta.0",
29                 "react": "16.9.0",
30                 "react-dom": "16.9.0",
31                 "react-scripts": "3.1.1",
32                 "react-bootstrap": "1.0.0-beta.14",
33                 "bootstrap-css-only": "4.3.1",
34                 "styled-components": "4.3.2",
35                 "react-router-dom": "5.0.1",
36                 "@material-ui/core": "4.9.11",
37                 "@material-ui/icons": "4.9.1",
38                 "material-table": "1.57.2",
39                 "react-select": "3.0.8"
40         },
41         "devDependencies": {
42                 "jest": "24.8.0",
43                 "babel-jest": "24.8.0",
44                 "@babel/preset-env": "7.5.5",
45                 "@babel/preset-react": "7.0.0",
46                 "@babel/plugin-proposal-class-properties": "7.5.5",
47                 "enzyme": "3.10.0",
48                 "enzyme-adapter-react-16": "1.14.0",
49                 "enzyme-to-json": "3.4.0",
50                 "jest-fetch-mock": "2.1.2"
51         },
52         "browserslist": [
53                 ">0.2%",
54                 "not dead",
55                 "not ie <= 11",
56                 "not op_mini all"
57         ],
58         "jest": {
59                 "verbose": true,
60                 "coverageDirectory": "${project.build.directory}/${ui.react.src}/coverage",
61                 "collectCoverageFrom": [
62                         "**/*.{js,jsx}"
63                 ],
64                 "rootDir": "${project.build.directory}/${ui.react.src}",
65                 "coverageReporters": [
66                         "lcov"
67                 ],
68                 "moduleNameMapper": {
69                         "\\.(css|png)$": "identity-obj-proxy"
70                 },
71                 "setupFiles": [
72                         "./src/setupTests.js"
73                 ],
74                 "snapshotSerializers": [
75                         "enzyme-to-json/serializer"
76                 ]
77         },
78         "babel": {
79                 "presets": [
80                         "@babel/preset-env",
81                         "@babel/preset-react"
82                 ],
83                 "plugins": [
84                         [
85                                 "@babel/plugin-proposal-class-properties",
86                                 {
87                                         "loose": true
88                                 }
89                         ],
90                         [
91                                 "@babel/plugin-transform-runtime"
92                         ]
93                 ]
94         }
95 }
96