-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.57 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
{
"name": "angular2-quickstart",
"version": "1.0.0",
"description": "QuickStart package.json from the documentation, supplemented with testing support",
"scripts": {
"start": "concurrently \"tsc -w\" \"lite-server\" ",
"docker-build": "docker build -t ng2-quickstart .",
"docker": "npm run docker-build && docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart",
"pree2e": "npm run webdriver:update",
"e2e": "tsc && concurrently \"http-server -s\" \"protractor protractor.config.js\" --kill-others --success first",
"lint": "tslint ./app/**/*.ts -t verbose",
"lite": "lite-server",
"postinstall": "typings install",
"test": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"",
"test-once": "tsc && karma start karma.conf.js --single-run",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings",
"webdriver:update": "webdriver-manager update"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@angular/common": "2.0.0-rc.5",
"@angular/compiler": "2.0.0-rc.5",
"@angular/core": "2.0.0-rc.5",
"@angular/forms": "0.3.0",
"@angular/http": "2.0.0-rc.5",
"@angular/platform-browser": "2.0.0-rc.5",
"@angular/platform-browser-dynamic": "2.0.0-rc.5",
"@angular/router": "3.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.2",
"@angular/upgrade": "2.0.0-rc.5",
"@ng-bootstrap/ng-bootstrap": "^1.0.0-alpha.2",
"angular2-in-memory-web-api": "0.0.15",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"core-js": "^2.4.0",
"ejs": "^2.5.1",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"http": "0.0.0",
"jsonwebtoken": "^7.1.9",
"moment": "^2.14.1",
"mongoose": "^4.5.8",
"morgan": "^1.7.0",
"ng2-bootstrap": "^1.1.2",
"nodemailer": "^2.6.0",
"open": "0.0.5",
"path": "^0.12.7",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"serve-favicon": "^2.3.0",
"systemjs": "0.19.27",
"zone.js": "^0.6.12"
},
"devDependencies": {
"canonical-path": "0.0.2",
"concurrently": "^2.2.0",
"http-server": "^0.9.0",
"jasmine-core": "~2.4.1",
"jquery": "^3.1.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-cli": "^0.1.2",
"karma-htmlfile-reporter": "^0.2.2",
"karma-jasmine": "^0.3.8",
"lite-server": "^2.2.2",
"lodash": "^4.11.1",
"open": "0.0.5",
"protractor": "^3.3.0",
"rimraf": "^2.5.2",
"tslint": "^3.7.4",
"twitter-bootstrap": "^2.1.1",
"typescript": "^1.8.10",
"typings": "^1.0.4"
},
"repository": {}
}