forked from IPS-LMU/EMU-webApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.15 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
{
"name": "emuwebapp",
"version": "1.3.9",
"description": "The EMU-webApp is an online and offline Web-App for labeling, visualizing and correcting speech and derived speech data.",
"main": "app/scripts/app.js",
"author": "Raphael Winkelmann, Georg Raess",
"license": "MIT",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/IPS-LMU/EMU-webApp"
},
"dependencies": {
"@angular/animations": "^5.0.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/platform-server": "^5.0.0",
"@angular/router": "^5.0.0",
"@angular/upgrade": "^5.0.0",
"@types/jquery": "^3.3.33",
"@types/node": "^13.7.6",
"angular": "^1.8.0",
"angular-animate": "^1.8.0",
"angular-cookies": "^1.8.0",
"angular-filter": "~0.5.17",
"angular-in-memory-web-api": "~0.5.0",
"angular-resource": "^1.8.0",
"angular-route": "^1.8.0",
"angular-sanitize": "^1.8.0",
"angular-touch": "^1.8.0",
"bootstrap-sass": "^3.4.1",
"comlink": "^4.2.0",
"core-js": "^2.4.1",
"d3": "^5.0.0",
"jquery": "^3.5.0",
"rxjs": "^6.0.0",
"rxjs-compat": "^6.0.0",
"showdown": "^1.9.1",
"tv4": "~1.0.17",
"web-animations-js": "^2.3.1",
"webdriver-manager": "^12.0.6",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@material/button": "^5.1.0",
"angular-mocks": "^1.8.0",
"autoprefixer": "^6.5.3",
"comlink-loader": "^2.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"file-loader": "^6.0.0",
"filewalker": "~0.1.2",
"jasmine-core": "^2.5.2",
"jasmine-jquery": "^2.1.1",
"jit-grunt": "^0.10.0",
"jshint-stylish": "^2.2.1",
"jsonschema": "^1.1.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.4.0",
"material-design-icons": "^3.0.1",
"node-sass": "^4.13.1",
"protractor": "^5.3.2",
"puppeteer": "^2.0.0",
"resolve-url-loader": "^3.1.1",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"serve": "^12.0.0",
"serve-static": "^1.11.1",
"style-loader": "^1.1.3",
"time-grunt": "^1.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.8.2",
"wav-range-requests": "git+https://[email protected]/IPS-LMU/wav-range-requests.git",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"worker-loader": "^2.0.0",
"ws": ">=7.4.6"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "rimraf dist/* && webpack --config webpack.prod.js",
"build-start": "rimraf dist/* && webpack --config webpack.prod.js && serve -l 9000 ./dist/",
"test": "karma start test/karma.conf.js"
}
}