forked from Refactoring-Bot/Refactoring-Bot-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.27 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
{
"name": "refactoring-bot-ui",
"description": "A web frontend to configure and manage the RefactoringBot.",
"version": "0.0.3",
"license": "Apache-2.0",
"author": "Justus Bogner <jreb1990@gmail.com>",
"contributors": [
"Marvin Wyrich <mail@marvin-wyrich.de>"
],
"scripts": {
"build": "webpack --config webpack.prod.config.js",
"start": "webpack-dev-server --open --history-api-fallback --hot --config webpack.dev.config.js",
"start-prod": "webpack-dev-server --open --history-api-fallback --config webpack.prod.config.js",
"lint": "tslint -c tslint.json src/**/*.ts",
"test": "jest",
"sonar": "sonar-scanner"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/vue-fontawesome": "^0.1.8",
"axios": "^0.19.0",
"bootstrap": "^4.4.1",
"bootstrap-vue": "^2.1.0",
"bootswatch": "^4.4.1",
"core-js": "^3.5.0",
"moment": "^2.24.0",
"npm-check-updates": "^4.0.1",
"vue": "2.6.10",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.3"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@vue/test-utils": "^1.0.0-beta.30",
"axios-mock-adapter": "^1.17.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.3.0",
"file-loader": "^5.0.2",
"git-revision-webpack-plugin": "^3.0.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"jsdom": "^15.2.1",
"jsdom-global": "^3.0.2",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"sonarqube-scanner": "^2.5.0",
"string-replace-loader": "^2.2.0",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-loader": "^3.5.4",
"tslint-webpack-plugin": "^2.1.0",
"typescript": "^3.7.3",
"vue-jest": "^4.0.0-beta.2",
"vue-loader": "^15.7.2",
"vue-template-compiler": "2.6.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
}
}