forked from kiali/kiali-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 3.28 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
{
"name": "swsui",
"version": "0.2.10",
"bugs": {
"url": "https://issues.jboss.org/projects/SWS/issues/"
},
"dependencies": {
"axios": "~0.17.1",
"lodash": "~4.17.5",
"patternfly": "~3.38.1",
"patternfly-react": "~1.8.2",
"react": "~16.2.0",
"react-bootstrap": "~0.32.1",
"react-cytoscape": "^1.0.6",
"react-dom": "~16.2.0",
"react-router-dom": "^4.2.2",
"react-scripts-ts": "2.13.0"
},
"scripts": {
"copy-fonts": "cp -r node_modules/patternfly/dist/fonts src/",
"copy-img": "cp -r node_modules/patternfly/dist/img src/",
"build-css": "node-sass-chokidar src/ --output-style compressed $npm_package_sassIncludes_src $npm_package_sassIncludes_patternfly $npm_package_sassIncludes_patternflyReact $npm_package_sassIncludes_bootstrap $npm_package_sassIncludes_fontAwesome -o src/",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json}\"",
"lint": "tslint --project ./tsconfig.json",
"start": "npm run copy-fonts && npm run copy-img && npm run build-css && npm run prettier && REACT_APP_VERSION=$npm_package_version REACT_APP_NAME=$npm_package_name REACT_APP_GIT_HASH=$npm_package_gitHead react-scripts-ts start",
"build": "npm run copy-fonts && npm run copy-img && npm run build-css && npm run prettier && REACT_APP_VERSION=$npm_package_version REACT_APP_NAME=$npm_package_name REACT_APP_GIT_HASH=$npm_package_gitHead react-scripts-ts build",
"test": "npm run prettier && react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"set-snapshot-version": "npm-snapshot",
"precommit": "npm run prettier -- --list-different || (echo 'Above file(s) were modified by prettier, check them before commiting' && false)"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.12",
"@storybook/addon-links": "^3.3.12",
"@storybook/addons": "^3.3.12",
"@storybook/react": "^3.3.12",
"@types/enzyme": "^3.1.9",
"@types/jest": "~22.1.1",
"@types/lodash": "~4.14.103",
"@types/node": "~9.4.0",
"@types/react": "~16.0.36",
"@types/react-dom": "~16.0.3",
"@types/react-router-dom": "^4.2.4",
"axios-mock-adapter": "^1.14.1",
"babel-core": "^6.26.0",
"coveralls": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"husky": "^0.14.3",
"node-sass-chokidar": "0.0.3",
"npm-snapshot": "^1.0.3",
"prettier": "^1.10.2",
"typescript": "~2.7.1"
},
"sassIncludes": {
"src": "--include-path src",
"patternfly": "--include-path node_modules/patternfly/dist/sass",
"patternflyReact": "--include-path node_modules/patternfly-react/dist/sass",
"bootstrap": "--include-path node_modules/patternfly/node_modules/bootstrap-sass/assets/stylesheets",
"fontAwesome": "--include-path node_modules/patternfly/node_modules/font-awesome-sass/assets/stylesheets"
},
"description": "React UI for [Swift Sunshine](https://github.com/swift-sunshine/swscore).",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/swift-sunshine/swsui.git"
},
"keywords": [
"hawkular",
"istio",
"openshift",
"observability",
"monitoring"
],
"author": "Red Hat",
"license": "Apache-2.0",
"homepage": "/"
}