This repository has been archived by the owner on Mar 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "che-workspace-loader",
"version": "7.28.0-SNAPSHOT",
"description": "Eclipse Che Workspace Loader App",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"compile": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --open --disable-host-check --config webpack.dev.js",
"format": "tsfmt -r --useTsfmt tsfmt.json",
"lint:fix": "tslint -c tslint.json --fix --project .",
"build": "yarn run format && yarn run compile"
},
"author": "",
"license": "EPL-2.0",
"devDependencies": {
"@types/jest": "^22.1.3",
"clean-webpack-plugin": "^0.1.18",
"css-loader": "^0.28.9",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.2",
"mini-css-extract-plugin": "^0.5.0",
"style-loader": "^0.20.1",
"ts-loader": "^5.3.3",
"tslint": "5.9.1",
"tslint-loader": "^3.5.4",
"typescript": "3.4.5",
"typescript-formatter": "7.2.2",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack": "^4.0.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"@eclipse-che/api": "latest",
"lodash": "4.17.15",
"reconnecting-websocket": "4.2.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "<rootDir>/test/preprocessor.js"
},
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/test/mock.js"
},
"testMatch": [
"**/test/*.(ts)"
],
"testURL": "http://localhost"
}
}