-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
86 lines (86 loc) · 2.74 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
{
"name": "youtrack-issues-list-widget",
"version": "1.0.0",
"private": true,
"config": {
"components": "./src",
"dist": "./dist"
},
"scripts": {
"postinstall": "npm rebuild node-sass",
"build": "webpack -p",
"test": "karma start",
"lint": "eslint . --quiet=true && npm run stylelint",
"stylelint": "stylelint --ignore-path .gitignore **/*.scss",
"ci-test": "npm run lint && xvfb-maybe karma start --teamcity",
"start": "webpack-dev-server -d --history-api-fallback --inline --hot --colors --port 9010",
"i18n:extract": "angular-gettext-cli --files \"{src/**/*.js,node_modules/hub-dashboard-addons/components/**/*.js,node_modules/@jetbrains/hub-widget-ui/src/**/*.js}\" --dest src/app/translations/default.pot --marker-name=i18n --module-method-plural=plural --module-name=i18n"
},
"babel": {
"presets": "@jetbrains/jetbrains"
},
"dependencies": {
"@jetbrains/babel-preset-jetbrains": "1.0.1",
"@jetbrains/hub-widget-ui": "^1.0.44",
"@jetbrains/icons": "1.12.0",
"@jetbrains/logos": "0.1.6",
"@jetbrains/ring-ui": "1.0.35",
"angular-gettext-cli": "1.2.0",
"angular-gettext-loader": "1.0.1",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-polyfill": "6.26.0",
"classnames": "^2.2.6",
"css-loader": "^5.2.6",
"fecha": "3.0.0",
"html-loader": "0.4.4",
"html-webpack-plugin": "3.2.0",
"hub-dashboard-addons": "1.0.1",
"json-loader": "0.5.7",
"postcss-cssnext": "3.1.0",
"postcss-loader": "2.0.9",
"postcss-modules-values-replace": "1.2.1",
"prop-types": "15.6.2",
"react": "17.0.2",
"react-dom": "16.4.2",
"redbox-react": "1.3.6",
"style-loader": "~2.0.0",
"webpack": "4.28.1",
"webpack-dev-server": "3.1.14"
},
"devDependencies": {
"@jetbrains/eslint-config": "^4.0.3",
"@jetbrains/stylelint-config": "^1.3.4",
"babel-eslint": "^10.0.1",
"chai": "4.0.2",
"chai-as-promised": "7.1.1",
"chai-dom": "1.5.0",
"chai-enzyme": "1.0.0-beta.1",
"chai-spies": "1.0.0",
"cheerio": "=1.0.0-rc.3",
"copy-webpack-plugin": "4.6.0",
"electron": "3.0.10",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.7.1",
"eslint": "^5.12.1",
"eslint-import-resolver-webpack": "^0.11.0",
"json-loader": "0.5.7",
"karma": "6.3.16",
"karma-chai-plugins": "0.9.0",
"karma-electron-launcher": "0.2.0",
"karma-mocha": "2.0.1",
"karma-sourcemap-loader": "0.3.7",
"karma-teamcity-reporter": "1.1.0",
"karma-webpack": "3.0.5",
"mocha": "9.2.0",
"react-test-renderer": "16.2.0",
"sinon": "2.3.5",
"sinon-chai": "2.11.0",
"stylelint": "8.3.0",
"webpack-cli": "3.2.1",
"xvfb-maybe": "0.2.1"
},
"engines": {
"node": ">=6.0.0"
}
}