-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.9 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.9 KB
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
{
"name": "teamcity-project-status",
"version": "1.0.6",
"private": true,
"config": {
"components": "./src",
"dist": "./dist"
},
"scripts": {
"preinstall": "npx npm-force-resolutions",
"build": "webpack -p",
"dist": "npm run build && rm -f teamcity-project-status-widget.zip && zip -r -j teamcity-project-status-widget.zip ./dist/*.{js,json,html}",
"test": "karma start",
"lint": "eslint . && npm run stylelint",
"stylelint": "stylelint --ignore-path .gitignore **/*.css",
"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"
},
"babel": {
"presets": "@jetbrains/jetbrains"
},
"dependencies": {
"@jetbrains/babel-preset-jetbrains": "1.1.1",
"@jetbrains/hub-widget-ui": "^1.0.24",
"@jetbrains/icons": "1.18.5",
"@jetbrains/logos": "1.0.3",
"@jetbrains/ring-ui": "1.0.0-beta.194",
"angular-gettext-cli": "1.2.0",
"angular-gettext-loader": "1.0.1",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-polyfill": "6.26.0",
"classnames": "2.2.6",
"css-loader": "1.0.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"hub-dashboard-addons": "^0.2.10",
"postcss-cssnext": "3.1.0",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-modules-values-replace": "3.0.1",
"prop-types": "15.6.2",
"react": "16.4.2",
"react-dom": "16.4.2",
"react-redux": "^5.0.7",
"redbox-react": "1.6.0",
"redux": "^4.0.0",
"redux-act": "^1.7.4",
"redux-thunk": "^2.3.0",
"webpack": "4.28.1",
"webpack-dev-server": "3.1.14"
},
"devDependencies": {
"@jetbrains/eslint-config": "2.0.0",
"@jetbrains/generator-ring-ui": "1.0.0-beta.160",
"@jetbrains/stylelint-config": "1.3.3",
"babel-eslint": "8.2.6",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"chai-dom": "1.8.0",
"chai-enzyme": "1.0.0-beta.0",
"copy-webpack-plugin": "4.6.0",
"electron": "3.0.10",
"enzyme": "3.4.1",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "5.2.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.0",
"minimist": "1.2.6",
"mocha": "9.2.0",
"react-test-renderer": "16.4.2",
"sinon": "5.1.1",
"sinon-chai": "3.2.0",
"stylelint": "9.4.0",
"webpack-cli": "3.2.1",
"xvfb-maybe": "0.2.1"
},
"engines": {
"node": ">=6.0.0"
},
"resolutions": {
"lodash": "4.17.12"
}
}