-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
118 lines (118 loc) · 4.61 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "lxd-webui",
"author": {
"name": "Anthony ARNAUD",
"email": "[email protected]"
},
"files": [
"dist",
"src"
],
"scripts": {
"clean": "npm cache clean && rm -rf node_modules doc typings coverage build dist",
"clean:build": "rm -rf build",
"preclean:install": "npm run clean",
"clean:install": "npm set progress=false && npm install",
"preclean:start": "npm run clean",
"clean:start": "npm start",
"watch": "npm run watch:dev",
"watch:dev": "npm run build:dev -- --watch",
"watch:dev:hmr": "npm run watch:dev -- --hot",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"watch:prod": "npm run build:prod -- --watch",
"watch:electron": "npm run build:electron:dev -- --watch",
"watch:electron:hmr": "npm run watch:electron -- --hot",
"build": "npm run build:dev",
"prebuild:dev": "npm run clean:build",
"build:dev": "webpack --config config/webpack.dev.js --progress --profile --colors --display-error-details --display-cached",
"prebuild:prod": "npm run clean:build",
"build:prod": "webpack --config config/webpack.prod.js --progress --profile --colors --display-error-details --display-cached --bail",
"build:github": "webpack --config config/webpack.github.js --progress --profile --colors --display-error-details --display-cached --bail",
"prebuild:electron:dev": "npm run clean:build",
"build:electron:dev": "webpack --config config/webpack.electron.dev.js --progress --profile --colors --display-error-details --display-cached",
"prebuild:electron:prod": "npm run clean:build",
"build:electron:prod": "webpack --config config/webpack.electron.prod.js --progress --profile --colors --display-error-details --display-cached",
"package:electron:linux": "build --platform linux --appDir ./build -d NuGet",
"package:electron:mac": "build --platform darwin --appDir ./build -d DMG",
"package:electron:windows": "build --platform win32 --appDir ./build -d 'windows installer'",
"electron": "electron build",
"predeploy": "npm run build:github",
"deploy": "gh-pages -d build",
"server": "npm run server:dev:hmr",
"server:dev": "webpack-dev-server --config config/webpack.dev.js --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base src/",
"server:dev:hmr": "npm run server:dev -- --hot",
"server:prod": "http-server build --cors",
"start": "npm run server",
"typings-install": "typings install",
"postinstall": "npm run typings-install",
"lint": "tslint 'src/**/*.ts'"
},
"dependencies": {
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/http": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/platform-server": "2.0.0-rc.1",
"@angular/router": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"angular2-modal": "^1.0.0",
"angular2-moment": "^0.8.0",
"bootstrap": "3.3.6",
"core-js": "^2.2.2",
"material-design-icons": "2.2.3",
"ng2-bootstrap": "1.0.16",
"ng2-toasty": "^1.7.2",
"normalize.css": "^4.1.1",
"pace": "HubSpot/pace",
"rxjs": "5.0.0-beta.6",
"zone.js": "~0.6.12"
},
"devDependencies": {
"angular2-hmr": "~0.7.0",
"awesome-typescript-loader": "~0.17.0",
"codelyzer": "~0.0.19",
"compression-webpack-plugin": "^0.3.1",
"copy-webpack-plugin": "^2.1.3",
"css-loader": "^0.23.1",
"electron-builder": "^3.23.0",
"electron-prebuilt": "^1.0.2",
"es6-promise": "^3.1.2",
"es6-promise-loader": "^1.0.1",
"es6-shim": "^0.35.0",
"es7-reflect-metadata": "^1.6.0",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
"file-loader": "^0.8.5",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.17.0",
"http-server": "^0.9.0",
"imports-loader": "^0.6.5",
"istanbul-instrumenter-loader": "^0.2.0",
"json-loader": "^0.5.4",
"ng2lint": "0.0.10",
"raw-loader": "^0.5.1",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"ts-helpers": "1.1.1",
"ts-node": "^0.7.1",
"tslint": "^3.7.1",
"tslint-loader": "^2.1.3",
"typescript": "^1.8.9",
"typings": "^0.8.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-md5-hash": "^0.0.5",
"webpack-merge": "^0.12.0"
},
"optionalDependencies": {
"appdmg": "^0.3.6"
},
"build": {
"app-bundle-id": "your.id",
"app-category-type": "your.app.category.type",
"icon": "src/electron/icon.icns"
},
"main": "electron.js"
}