forked from angular/ng2-test-seed
-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "ng2-test-seed",
"version": "0.0.2",
"description": "Setup seed for Angular 2 application",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/angular/ng-test-seed.git"
},
"scripts": {
"postinstall": "typings install --ambient",
"clean": "rimraf built/",
"copy": "cp src/{index.html,styles.css,system-config.js} built/",
"copytemplates": "cp src/app/{*.html,*.css} built/app/",
"build": "tsc && npm run copy && npm run copytemplates",
"watch": "tsc --watch",
"serve": "http-server -p 9090 -c-1",
"test": "karma start karma.conf.js"
},
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"clang-format": "^1.0.35",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.12",
"systemjs": "0.19.27",
"zone.js": "0.6.22"
},
"devDependencies": {
"http-server": "^0.8.5",
"jasmine": "2.3.2",
"karma": "1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"rimraf": "^2.4.3",
"typescript": "1.8.10",
"typings": "^0.6.6"
}
}