This repository has been archived by the owner on Apr 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.62 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
{
"name": "mask",
"version": "1.0.0",
"scripts": {
"start": "tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.js\" ",
"serve": "tsc && concurrently \"tsc -w\" \"webpack-dev-server -p --inline --progress\"",
"lite": "tsc && concurrently \"tsc -w\" \"webpack -w\" \"lite-server -c bs-config.js\"",
"tsc": "tsc",
"tsc:w": "tsc -w",
"build": "webpack -p --progress",
"webpack": "webpack",
"push": "npm run build && scp -r app/* aswwu.com:/var/www/html/mask/app/ && scp dist/* aswwu.com:/var/www/html/mask/dist/"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/angular/angular.io/blob/master/LICENSE"
}
],
"dependencies": {
"@angular/common": "~2.4.10",
"@angular/compiler": "~2.4.0",
"@angular/core": "~2.4.10",
"@angular/forms": "~2.4.0",
"@angular/http": "~2.4.0",
"@angular/platform-browser": "~2.4.10",
"@angular/platform-browser-dynamic": "~2.4.0",
"@angular/router": "~3.4.0",
"@ng-bootstrap/ng-bootstrap": "1.0.0-alpha.18",
"@types/node": "~6.0.68",
"angular-in-memory-web-api": "~0.2.4",
"bootstrap": "4.0.0-alpha.6",
"core-js": "^2.4.1",
"ng2-file-upload": "~1.2.1",
"reflect-metadata": "^0.1.10",
"rxjs": "5.0.1",
"systemjs": "0.19.40",
"typescript": "2.2.2",
"zone.js": "~0.7.4"
},
"devDependencies": {
"@types/core-js": "~0.9.40",
"@types/node": "~6.0.45",
"concurrently": "~3.0.0",
"html-webpack-plugin": "~2.28.0",
"lite-server": "~2.2.2",
"ts-loader": "~2.0.3",
"typescript": "~2.2.2",
"webpack": "~2.4.1",
"webpack-dev-server": "~2.4.2"
}
}