-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 2.4 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
{
"name": "ng2-quick-start",
"version": "1.0.0",
"scripts": {
"start": "tsc && concurrently \"tsc --watch\" \"lite-server\"",
"lint": "tslint src/**/*.ts -t verbose",
"build:aot": "ngc --project tsconfig-aot.json && rollup -c rollup.config.js && node copy-dist-files.js",
"lite:aot": "lite-server -c aot/bs-config.js",
"lite": "lite-server -c bs-config.js",
"clean": "rimraf build",
"clean:aot": "rimraf build-aot aot/{src,dist,node_modules,styles.css,shim.min.js,zone.min.js}",
"explorer:aot": "source-map-explorer aot/dist/build.min.js",
"tsc": "tsc",
"tsc:w": "tsc --watch",
"e2e:up": "webdriver-manager update",
"e2e": "tsc && concurrently \"browser-sync start --config bs-config.js --no-open\" \"protractor protractor.config.js\" --kill-others --success first",
"e2e:aot": "concurrently \"browser-sync start --config aot/bs-config.js --no-open\" \"protractor protractor.config.js\" --kill-others --success first",
"test": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"",
"test-once": "tsc && karma start karma.conf.js --single-run"
},
"repository": "ibqn/ng2-quick-start",
"dependencies": {
"@angular/animations": "^4.0.1",
"@angular/common": "^4.0.1",
"@angular/compiler": "^4.0.1",
"@angular/core": "^4.0.1",
"@angular/forms": "^4.0.1",
"@angular/http": "^4.0.1",
"@angular/platform-browser": "^4.0.1",
"@angular/platform-browser-dynamic": "^4.0.1",
"@angular/router": "^4.0.1",
"@angular/upgrade": "^4.0.1",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.3.0",
"systemjs": "^0.20.11",
"zone.js": "^0.8.5"
},
"devDependencies": {
"@angular/compiler-cli": "^4.0.1",
"@angular/platform-server": "^4.0.1",
"@types/core-js": "^0.9.41",
"@types/jasmine": "^2.5.45",
"@types/node": "^7.0.12",
"concurrently": "^3.4.0",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"lite-server": "^2.3.0",
"node-cmd": "^2.0.0",
"protractor": "^5.1.1",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.1",
"source-map-explorer": "^1.3.3",
"tslint": "^5.0.0",
"typescript": "^2.2.2"
}
}