-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
52 lines (52 loc) · 1.73 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": "ngxp-quotes-app",
"version": "1.0.1",
"description": "A cross platform quotes application.",
"scripts": {
"ngxp-install": "npm install && cd web && npm install && cd ../nativescript && tns install && node ../tools/install.js && cd .. && typings install",
"build": "cd web && ng build",
"build.prod": "cd web && ng build --prod",
"build.aot": "cd web && ng build --aot",
"build.aot.prod": "cd web && ng build --aot --prod",
"start": "cd web && ng serve",
"start.prod": "cd web && ng serve --prod",
"start.aot": "cd web && ng serve --aot",
"start.aot.prod": "cd web && ng serve --aot --prod",
"start.android": "cd nativescript && tns run android",
"start.ios": "cd nativescript && tns run ios",
"livesync.android": "cd nativescript && tns livesync android --watch",
"livesync.ios": "cd nativescript && tns livesync ios --watch",
"test": "cd web && ng test",
"test-cc": "npm test -- -cc",
"test.android": "cd nativescript && tns test android --watch",
"test.ios": "cd nativescript && tns test ios --watch"
},
"keywords": [
"nativescript",
"angular4",
"ng4",
"angular"
],
"author": "Shripal Soni",
"license": "MIT",
"devDependencies": {
"codelyzer": "^3.0.1",
"@types/jasmine": "^2.2.30",
"typings": "^1.4.0",
"tslint": "^5.2.0"
},
"dependencies": {
"@angular/core": "^4.2.3",
"@angular/common": "^4.2.3",
"@angular/compiler": "^4.2.3",
"@angular/forms": "^4.2.3",
"@angular/http": "^4.2.3",
"@angular/platform-browser": "^4.2.3",
"@angular/platform-browser-dynamic": "^4.2.3",
"@angular/router": "^4.2.3",
"core-js": "^2.4.1",
"rxjs": "^5.2.0",
"zone.js": "^0.8.10",
"ts-helpers": "^1.1.1"
}
}