forked from fabric8-ui/fabric8-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.42 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "talamer-ui",
"version": "0.0.0",
"description": "CodeReady Toolchain",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"clean": "lerna clean && rimraf node_modules",
"format": "npm-run-all format:js format:css format:md format:html",
"format:css": "npm run lint:css -- --fix",
"format:html": "prettier '**/*.html' --write",
"format:js": "npm run lint:js -- --fix",
"format:md": "prettier '**/*.md' --write",
"lerna": "lerna",
"lint": "npm-run-all lint:js lint:css lint:html",
"lint:css": "stylelint '**/*.{css,scss,less}' --max-warnings 0",
"lint:js": "eslint '**/*.{js,ts,tsx}' --max-warnings 0 --format codeframe",
"lint:html": "htmlhint **/*.html",
"reinstall": "npm run clean && npm install",
"test": "CI=1 lerna run test --stream"
},
"engines": {
"node": "= 8.3.0",
"npm": "= 5.3.0"
},
"homepage": "https://github.com/fabric8-ui/fabric8-ui",
"repository": {
"type": "git",
"url": "https://github.com/fabric8-ui/fabric8-ui.git"
},
"bugs": {
"url": "https://github.com/openshiftio/openshift.io/issues"
},
"license": "Apache-2.0",
"private": true,
"keywords": [
"codeready",
"angular",
"typescript",
"talamer"
],
"workspaces": [
"packages/*"
],
"dependencies": {
"@angular/animations": "7.0.4",
"@angular/common": "7.0.4",
"@angular/compiler": "7.0.4",
"@angular/compiler-cli": "7.0.4",
"@angular/core": "7.0.4",
"@angular/forms": "7.0.4",
"@angular/http": "7.0.4",
"@angular/platform-browser": "7.0.4",
"@angular/platform-browser-dynamic": "7.0.4",
"@angular/platform-server": "7.0.4",
"@angular/router": "7.0.4",
"@angular/upgrade": "7.0.4",
"@talamer/scripts": "file:./packages/scripts",
"@types/lodash-es": "4.17.1",
"@types/react": "16.4.18",
"@types/react-dom": "16.0.9",
"@types/react-router": "4.4.0",
"@types/react-router-dom": "4.3.1",
"lodash-es": "4.17.11",
"react": "16.6.3",
"react-dom": "16.6.3",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"rxjs": "6.3.3",
"rxjs-compat": "6.3.3",
"typescript": "3.1.3",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular/language-service": "7.0.4",
"babel-eslint": "10.0.1",
"eslint": "5.9.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "2.10.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "21.21.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-osio": "file:./packages/eslint-plugin-osio",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-sort-class-members": "1.3.1",
"eslint-plugin-typescript": "0.12.0",
"htmlhint": "0.10.1",
"husky": "1.2.0",
"jest-zone-patch": "0.0.8",
"lerna": "2.11.0",
"npm-run-all": "4.1.5",
"prettier": "1.15.3",
"react-test-renderer": "16.6.3",
"rimraf": "2.6.2",
"stylelint": "9.5.0",
"stylelint-config-osio": "file:./packages/stylelint-config-osio",
"typescript-eslint-parser": "20.0.0"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions",
"last 2 safari versions",
"firefox esr"
],
"production": [
">0.25%",
"not op_mini all"
]
}
}