-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.68 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
{
"name": "electron-with-angular2",
"version": "1.0.0",
"description": "Electron with Angular 2",
"main": "",
"scripts": {
"watch": "npm run watch:dev",
"watch:dev": "webpack --watch --progress --profile --colors --display-error-details --display-cached",
"build": "npm run build:dev",
"build:dev": "webpack --progress --profile --colors --display-error-details --display-cached",
"package": "node package.js",
"package-all": "npm run package -- --all",
"electron": "electron src/app",
"webpack-test": "webpack --config webpack.test.js --progress --profile --colors --display-error-details --display-cached",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/Biocodr/ItemSetBuilder.git"
},
"author": "Christian Lüthold",
"license": "MIT",
"bugs": {
"url": "https://github.com/Biocodr/ItemSetBuilder/issues"
},
"homepage": "https://github.com/Biocodr/ItemSetBuilder#readme",
"dependencies": {
"@angular/common": "^2.4.10",
"@angular/compiler": "^2.4.10",
"@angular/core": "^2.4.10",
"@angular/forms": "^2.4.10",
"@angular/http": "^2.4.10",
"@angular/material": "^2.0.0-beta.2",
"@angular/platform-browser": "^2.4.10",
"@angular/platform-browser-dynamic": "^2.4.10",
"@angular/platform-server": "^2.4.10",
"@angular/router": "^3.4.10",
"copy-webpack-plugin": "^4.0.1",
"electron": "^1.6.2",
"rxjs": "^5.0.1",
"zone.js": "^0.7.2"
},
"devDependencies": {
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.1.2",
"electron-packager": "^8.6.0",
"karma": "^1.5.0",
"typescript": "^2.2.1",
"webpack": "^2.2.1"
}
}