-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.51 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
81
82
{
"name": "ang-ns-todo",
"nativescript": {
"id": "org.nativescript.angnstodo",
"tns-ios": {
"version": "6.0.1"
},
"tns-android": {
"version": "6.0.0"
}
},
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run build:web && npm run build:ios && npm run build:android",
"build:web": "ng build",
"build:ios": "tns build ios --bundle",
"build:android": "tns build android --bundle",
"test": "npm run test:web",
"test:web": "ng test",
"test:ios": "tns test ios --watch",
"test:android": "tns test android --watch",
"lint": "ng lint",
"android": "tns run android --bundle",
"ios": "tns run ios --bundle",
"mobile": "tns run --bundle",
"preview": "tns preview --bundle",
"clean": "npx rimraf hooks node_modules platforms dist package-lock.json",
"clean-install": "npm run clean && npm install"
},
"private": true,
"dependencies": {
"@angular/animations": "^8.1.1",
"@angular/cdk": "^8.1.0",
"@angular/common": "^8.1.0",
"@angular/compiler": "^8.1.0",
"@angular/core": "^8.1.0",
"@angular/forms": "^8.1.0",
"@angular/http": "^8.0.0-beta.10",
"@angular/material": "^8.1.0",
"@angular/platform-browser": "^8.1.0",
"@angular/platform-browser-dynamic": "^8.1.0",
"@angular/router": "^8.1.0",
"@ngrx/effects": "^8.1.0",
"@ngrx/entity": "^8.1.0",
"@ngrx/store": "^8.1.0",
"@ngrx/store-devtools": "^8.1.0",
"core-js": "^3.1.4",
"nativescript-angular": "^8.0.2",
"nativescript-theme-core": "^2.0.1",
"nativescript-unit-test-runner": "^0.7.0",
"reflect-metadata": "~0.1.12",
"tns-core-modules": "^6.0.1",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.801.0",
"@angular/cli": "^8.1.0",
"@angular/compiler-cli": "^8.1.0",
"@nativescript/schematics": "~0.4.0",
"@ngrx/schematics": "^8.1.0",
"@types/jasmine": "3.3.13",
"@types/jasminewd2": "^2.0.6",
"@types/node": "~8.9.4",
"codelyzer": "~4.2.1",
"jasmine-core": "^3.4.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"karma-nativescript-launcher": "^0.4.0",
"karma-webpack": "^4.0.2",
"nativescript-dev-webpack": "^1.0.1",
"node-sass": "^4.12.0",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typescript": "3.4.5"
}
}